2 // Copyright (C) 2010-2015 Rod Roark <rod@sunsetsystems.com>
4 // This program is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU General Public License
6 // as published by the Free Software Foundation; either version 2
7 // of the License, or (at your option) any later version.
9 // $GLOBALS['print_command'] is the
10 // Print command for spooling to printers, used by statements.inc.php
11 // This is the command to be used for printing (without the filename).
12 // The word following "-P" should be the name of your printer. This
13 // example is designed for 8.5x11-inch paper with 1-inch margins,
14 // 10 CPI, 6 LPI, 65 columns, 54 lines per page.
16 // IF lpr services are installed on Windows this setting will be similar
17 // Otherwise configure it as needed (print /d:PRN) might be an option for Windows parallel printers
19 // Current supported languages: // Allow capture of term for translation:
20 // Albanian // xl('Albanian')
21 // Amharic // xl('Amharic')
22 // Arabic // xl('Arabic')
23 // Armenian // xl('Armenian')
24 // Bahasa Indonesia // xl('Bahasa Indonesia')
25 // Bengali // xl('Bengali')
26 // Bosnian // xl('Bosnian')
27 // Chinese (Simplified) // xl('Chinese (Simplified)')
28 // Chinese (Traditional) // xl('Chinese (Traditional)')
29 // Croatian // xl('Croatian')
30 // Czech // xl('Czech')
31 // Danish // xl('Danish')
32 // Dutch // xl('Dutch')
33 // English (Indian) // xl('English (Indian)')
34 // English (Standard) // xl('English (Standard)')
35 // Estonian // xl('Estonian')
36 // Finnish // xl('Finnish')
37 // French // xl('French (Standard)')
38 // French // xl('French (Canadian)')
39 // Georgian // xl('Georgian')
40 // German // xl('German')
41 // Greek // xl('Greek')
42 // Hebrew // xl('Hebrew')
43 // Hindi // xl('Hindi')
44 // Hungarian // xl('Hungarian')
45 // Italian // xl('Italian')
46 // Japanese // xl('Japanese')
47 // Korean // xl('Korean')
48 // Lithuanian // xl('Lithuanian')
49 // Marathi // xl('Marathi')
50 // Mongolian // xl('Mongolian')
51 // Norwegian // xl('Norwegian')
52 // Persian // xl('Persian')
53 // Polish // xl('Polish')
54 // Portuguese (Brazilian) // xl('Portuguese (Brazilian)')
55 // Portuguese (European) // xl('Portuguese (European)')
56 // Romanian // xl('Romanian')
57 // Russian // xl('Russian')
58 // Serbian // xl('Serbian')
59 // Sinhala // xl('Sinhala')
60 // Slovak // xl('Slovak')
61 // Somali // xl('Somali')
62 // Spanish (Latin American) // xl('Spanish (Latin American)')
63 // Spanish (Spain) // xl('Spanish (Spain)')
64 // Swedish // xl('Swedish')
65 // Tamil // xl('Tamil')
66 // Turkish // xl('Turkish')
67 // Ukrainian // xl('Ukrainian')
69 // Vietnamese // xl('Vietnamese')
71 // OS-dependent stuff.
72 if (stristr(PHP_OS
, 'WIN')) {
74 $mysql_bin_dir = 'C:/xampp/mysql/bin';
75 $perl_bin_dir = 'C:/xampp/perl/bin';
76 $temporary_files_dir = 'C:/windows/temp';
77 $backup_log_dir = 'C:/windows/temp';
80 $mysql_bin_dir = '/usr/bin';
81 $perl_bin_dir = '/usr/bin';
82 $temporary_files_dir = '/tmp';
83 $backup_log_dir = '/tmp';
86 // Language constant declarations:
92 // xl('Notifications')
93 // xl('Miscellaneous')
95 // List of user specific tabs and globals
96 $USER_SPECIFIC_TABS = array('Appearance',
102 $USER_SPECIFIC_GLOBALS = array('default_top_pane',
106 'menu_styling_vertical',
107 'default_encounter_view',
108 'gbl_pt_list_page_size',
109 'gbl_pt_list_new_window',
110 'units_of_measurement',
112 'date_display_format',
113 'time_display_format',
115 'print_next_appointment_on_ledger',
116 'calendar_view_type',
121 'patient_birthday_alert',
122 'patient_birthday_alert_manual_off',
123 'erx_import_status_message');
125 // Gets array of time zones supported by PHP.
127 function gblTimeZones()
129 $zones = timezone_identifiers_list();
130 $arr = array('' => xl('Unassigned'));
131 foreach ($zones as $zone) {
132 $arr[$zone] = str_replace('_', ' ', $zone);
138 $GLOBALS_METADATA = array(
142 'Appearance' => array(
144 'default_top_pane' => array(
145 xl('Main Top Pane Screen'), // descriptive name
147 'main_info.php' => xl('Calendar Screen'),
148 '../new/new.php' => xl('Patient Search/Add Screen'),
149 '../../interface/main/finder/dynamic_finder.php' => xl('Patient Finder Screen'),
150 '../../interface/patient_tracker/patient_tracker.php?skip_timeout_reset=1' => xl('Patient Flow Board'),
152 'main_info.php', // default = calendar
153 xl('Type of screen layout')
156 'new_tabs_layout' => array(
157 xl('Layout (need to logout/login after change this setting)'),
163 xl('Choose the layout (need to logout and then login to see this new setting).')
166 'theme_tabs_layout' => array(
167 xl('Tabs Layout Theme (need to logout/login after change this setting)'),
169 'tabs_style_full.css',
170 xl('Theme of the tabs layout (need to logout and then login to see this new setting).')
173 'css_header' => array(
174 xl('General Theme (need to logout/login after change this setting)'),
177 xl('Pick a general theme (need to logout/login after change this setting).')
181 xl('Default font (need to logout/login after change this setting)'),
183 '__default__' => 'Use Theme Font',
184 'Arial, Helvetica, sans-serif' => "Arial",
185 '"Arial Black", Gadget, sans-serif' => "Arial Black",
186 'Impact, Charcoal, sans-serif' => "Impact",
187 '"Lucida Sans Unicode", "Lucida Grande", sans-serif' => "Lucida Sans",
188 'Tahoma, Geneva, sans-serif' => "Tahoma",
189 '"Trebuchet MS", Helvetica, sans-serif' => "Trebuchet MS",
190 'Verdana, Geneva, sans-serif' => "Verdana",
194 xl('Select the default font'),
198 xl('Default font size (need to logout/login after change this setting)'),
200 '__default__' => 'Use Theme Font Size',
208 xl("Select the default font size"),
211 'menu_styling_vertical' => array(
212 xl('Vertical Menu Style'),
215 '1' => xl('Sliding'),
218 xl('Vertical Menu Style')
221 'default_encounter_view' => array(
222 xl('Default Encounter View'), // descriptive name
224 '0' => xl('Clinical View'),
225 '1' => xl('Billing View'),
227 '0', // default = tree menu
228 xl('Choose your default encounter view')
231 'gbl_nav_area_width' => array(
232 xl('Navigation Area Width'),
235 xl('Width in pixels of the left navigation frame.')
238 'openemr_name' => array(
239 xl('Application Title'),
242 xl('Application name for login page and main window title.')
245 'enable_group_therapy' => array(
246 xl('Enable Group Therapy'),
248 '0', // default = false
249 xl('Enables groups module in system.')
252 'full_new_patient_form' => array(
253 xl('New Patient Form'),
256 '0' => xl('Old-style static form without search or duplication check'),
257 '1' => xl('All demographics fields, with search and duplication check'),
258 '2' => xl('Mandatory or specified fields only, search and dup check'),
259 '3' => xl('Mandatory or specified fields only, dup check, no search'),
260 '4' => xl('Mandatory or specified fields only, use patient validation Zend module'),
263 xl('Style of form used for adding new patients')
266 'gbl_edit_patient_form' => array(
267 xl('Modify Patient Form'),
270 '0' => xl('Standard check'),
271 '1' => xl('Zend Module check in addition to standard check')
274 xl('Validation mechanism for when modifying patient demographics.')
277 'patient_search_results_style' => array(
278 xl('Patient Search Results Style'),
280 '0' => xl('Encounter statistics'),
281 '1' => xl('Mandatory and specified fields'),
284 xl('Type of columns displayed for patient search results')
287 'gbl_tall_nav_area' => array(
288 xl('Tall Navigation Area'),
290 '0', // default = false
291 xl('Navigation area uses full height of frameset')
294 'gbl_nav_visit_forms' => array(
295 xl('Navigation Area Visit Forms'),
297 '1', // default = true
298 xl('Navigation area includes encounter forms')
301 'simplified_demographics' => array(
302 xl('Simplified Demographics'),
304 '0', // default = false
305 xl('Omit insurance and some other things from the demographics form')
308 'simplified_prescriptions' => array(
309 xl('Simplified Prescriptions'),
311 '0', // default = false
312 xl('Omit form, route and interval which then become part of dosage')
315 'simplified_copay' => array(
316 xl('Simplified Co-Pay'),
318 '0', // default = false
319 xl('Omit method of payment from the co-pay panel')
322 'use_charges_panel' => array(
323 xl('Use Charges Panel'),
325 '0', // default = false
326 xl('Enables the old Charges panel for entering billing codes and payments. Not recommended, use the Fee Sheet instead.')
329 // TajEmo Work BY CB 2012/06/21 10:42:31 AM added option to Hide Fees
330 'enable_fees_in_left_menu' => array(
331 xl('Enable Fees Submenu'),
333 '1', // default = true
334 xl('Enable Fees Submenu')
336 'enable_batch_payment' => array(
337 xl('Enable Batch Payment'),
339 '1', // default = true
340 xl('Enable Batch Payment')
342 'enable_posting' => array(
343 xl('Enable Posting'),
345 '1', // default = true
348 // EDI history 2012-09-13
349 'enable_edihistory_in_left_menu' => array(
350 xl('Enable EDI History'),
352 '1', // default = true
353 xl('EDI History (under Fees) for storing and interpreting EDI claim response files')
356 'online_support_link' => array(
357 xl('Online Support Link'),
359 'http://open-emr.org/',
360 xl('URL for OpenEMR support.')
363 'support_phone_number' => array(
364 xl('Support Phone Number'),
367 xl('Phone Number for Vendor Support that Appears on the About Page.')
370 'encounter_page_size' => array(
371 xl('Encounter Page Size'),
373 '0' => xl('Show All'),
382 xl('Number of encounters to display per page.')
385 'gbl_pt_list_page_size' => array(
386 xl('Patient List Page Size'),
394 xl('Number of patients to display per page in the patient list.')
397 'gbl_pt_list_new_window' => array(
398 xl('Patient List New Window'),
400 '0', // default = false
401 xl('Default state of New Window checkbox in the patient list.')
404 'gbl_vitals_options' => array(
405 xl('Vitals Form Options'),
407 '0' => xl('Standard'),
408 '1' => xl('Omit circumferences'),
411 xl('Special treatment for the Vitals form')
414 'insurance_information' => array(
415 xl('Show Additional Insurance Information'), // descriptive name
418 '1' => xl('Address Only'),
419 '2' => xl('Address and Postal Code'),
420 '3' => xl('Address and State'),
421 '4' => xl('Address, State and Postal Code'),
422 '5' => xl('Address, City, State and Postal Code'),
423 '6' => xl('Postal Code and Box Number')
426 xl('Show Insurance Address Information in the Insurance Panel of Demographics.')
429 'gb_how_sort_list' => array(
430 xl('How to sort a drop-lists'),
432 '0' => xl('Sort by seq'),
433 '1' => xl('Sort alphabetically')
436 xl('What kind of sorting will be in the drop lists.')
439 'show_label_login' => array(
440 xl('Show Title on Login'),
442 '0', // default = false
443 xl('Show Title on Login')
446 'extra_logo_login' => array(
447 xl('Show Extra Logo on Login'),
449 '0', // default = false
450 xl('Show Extra Logo on Login')
453 'tiny_logo_1' => array(
454 xl('Show Mini Logo 1'),
456 '0', // default = false
457 xl('Show Mini Logo 1')
460 'tiny_logo_2' => array(
461 xl('Show Mini Logo 2'),
463 '0', // default = false
464 xl('Show Mini Logo 2')
473 'language_default' => array(
474 xl('Default Language'),
476 'English (Standard)', // default = english
477 xl('Default language if no other is allowed or chosen.')
480 'language_menu_showall' => array(
481 xl('All Languages Allowed'),
483 '1', // default = true
484 xl('Allow all available languages as choices on menu at login.')
487 'language_menu_other' => array(
488 xl('Allowed Languages'),
489 'm_lang', // data type
490 '', // default = none
491 xl('Select which languages, if any, may be chosen at login. (only pertinent if above All Languages Allowed is turned off)')
494 'allow_debug_language' => array(
495 xl('Allow Debugging Language'),
497 '1', // default = true during development and false for production releases
498 xl('This will allow selection of the debugging (\'dummy\') language.')
501 'translate_no_safe_apostrophe' => array(
502 xl('Do Not Use Safe Apostrophe'),
504 '0', // default = false
505 xl('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)')
508 'translate_layout' => array(
509 xl('Translate Layouts'),
511 '1', // default = true
512 xl('Is text from form layouts to be translated?')
515 'translate_lists' => array(
516 xl('Translate Lists'),
518 '1', // default = true
519 xl('Is text from lists to be translated?')
522 'translate_gacl_groups' => array(
523 xl('Translate Access Control Groups'),
525 '1', // default = true
526 xl('Are access control group names to be translated?')
529 'translate_form_titles' => array(
530 xl('Translate Patient Note Titles'),
532 '1', // default = true
533 xl('Are patient note titles to be translated?')
536 'translate_document_categories' => array(
537 xl('Translate Document Categories'),
539 '1', // default = true
540 xl('Are document category names to be translated?')
543 'translate_appt_categories' => array(
544 xl('Translate Appointment Categories'),
546 '1', // default = true
547 xl('Are appointment category names to be translated?')
550 'units_of_measurement' => array(
551 xl('Units for Visit Forms'),
553 '1' => xl('Show both US and metric (main unit is US)'),
554 '2' => xl('Show both US and metric (main unit is metric)'),
555 '3' => xl('Show US only'),
556 '4' => xl('Show metric only'),
558 '1', // default = Both/US
559 xl('Applies to the Vitals form and Growth Chart')
562 'us_weight_format' => array(
563 xl('Display Format for US Weights'),
565 '1' => xl('Show pounds as decimal value'),
566 '2' => xl('Show pounds and ounces')
569 xl('Applies to Vitals form')
572 'phone_country_code' => array(
573 xl('Telephone Country Code'),
575 '1', // default = North America
576 xl('1 = North America. See http://www.wtng.info/ for a list of other country codes.')
579 'date_display_format' => array(
580 xl('Date Display Format'),
582 '0' => xl('YYYY-MM-DD'),
583 '1' => xl('MM/DD/YYYY'),
584 '2' => xl('DD/MM/YYYY'),
587 xl('Format used to display most dates.')
590 'time_display_format' => array(
591 xl('Time Display Format'),
597 xl('Format used to display most times.')
600 'gbl_time_zone' => array(
604 xl('If unassigned will default to php.ini setting for date.timezone.')
607 'currency_decimals' => array(
608 xl('Currency Decimal Places'),
615 xl('Number of digits after decimal point for currency, usually 0 or 2.')
618 'currency_dec_point' => array(
619 xl('Currency Decimal Point Symbol'),
625 xl('Symbol used as the decimal point for currency. Not used if Decimal Places is 0.')
628 'currency_thousands_sep' => array(
629 xl('Currency Thousands Separator'),
637 xl('Symbol used to separate thousands for currency.')
640 'gbl_currency_symbol' => array(
641 xl('Currency Designator'),
644 xl('Code or symbol to indicate currency')
646 'age_display_format' => array(xl('Age Display Format'),
648 '0' => xl('Years or months'),
649 '1' => xl('Years, months and days')
652 xl('Format for age display')
654 'age_display_limit' => array(
655 xl('Age in Years for Display Format Change'),
658 xl('If YMD is selected for age display, switch to just Years when patients older than this value in years')
660 // Reference - https://en.wikipedia.org/wiki/Workweek_and_weekend#Around_the_world
661 'weekend_days' => array(
662 xl('Your weekend days'),
664 '6,0' => xl('Saturday') . ' - ' . xl('Sunday'),
667 '6' => xl('Saturday'),
668 '5,6' => xl('Friday') . ' - ' . xl('Saturday'),
671 , xl('which days are your weekend days?')
680 'specific_application' => array(
681 xl('Specific Application'),
685 '3' => xl('Weight loss clinic'),
688 xl('Indicator for specialized usage')
691 'inhouse_pharmacy' => array(
692 xl('Drugs and Products'),
694 '0' => xl('Do not inventory and sell any products'),
695 '1' => xl('Inventory and sell drugs only'),
696 '2' => xl('Inventory and sell both drugs and non-drug products'),
697 '3' => xl('Products but no prescription drugs and no templates'),
700 xl('Option to support inventory and sales of products')
703 'default_visit_category' => [
704 xl('Default Visit Category'),
705 'default_visit_category',
707 xl('Define a default visit category'),
710 'disable_chart_tracker' => array(
711 xl('Disable Chart Tracker'),
713 '0', // default = false
714 xl('Removes the Chart Tracker feature')
717 'disable_immunizations' => array(
718 xl('Disable Immunizations'),
720 '0', // default = false
721 xl('Removes support for immunizations')
724 'disable_prescriptions' => array(
725 xl('Disable Prescriptions'),
727 '0', // default = false
728 xl('Removes support for prescriptions')
731 'omit_employers' => array(
732 xl('Omit Employers'),
734 '0', // default = false
735 xl('Omit employer information in patient demographics')
738 'select_multi_providers' => array(
739 xl('Support Multi-Provider Events'),
741 '0', // default = false
742 xl('Support calendar events that apply to multiple providers')
745 'disable_non_default_groups' => array(
746 xl('Disable User Groups'),
748 '1', // default = true
749 xl('Normally this should be checked. Not related to access control.')
752 'ignore_pnotes_authorization' => array(
753 xl('Skip Authorization of Patient Notes'),
755 '1', // default = true
756 xl('Do not require patient notes to be authorized')
759 'support_encounter_claims' => array(
760 xl('Allow Encounter Claims'),
762 '0', // default = false
763 xl('Allow creation of claims containing diagnoses but not procedures or charges. Most clinics do not want this.')
766 'advance_directives_warning' => array(
767 xl('Advance Directives Warning'),
769 '0', // default = false
770 xl('Display advance directives in the demographics page.')
773 'configuration_import_export' => array(
774 xl('Configuration Export/Import'),
776 '0', // default = false
777 xl('Support export/import of configuration data via the Backup page.')
780 'restrict_user_facility' => array(
781 xl('Restrict Users to Facilities'),
784 xl('Restrict non-authorized users to the Schedule Facilities set in User admin.')
787 'set_facility_cookie' => array(
788 xl('Remember Selected Facility'),
791 xl('Set a facility cookie to remember the selected facility between logins.')
794 'receipts_by_provider' => array(
795 xl('Print Receipts by Provider'),
798 xl('Causes Receipts to Print Encounter/Primary Provider Info')
801 'discount_by_money' => array(
802 xl('Discounts as Monetary Amounts'),
804 '1', // default = true
805 xl('Discounts at checkout time are entered as money amounts, as opposed to percentage.')
808 'gbl_visit_referral_source' => array(
809 xl('Referral Source for Encounters'),
811 '0', // default = false
812 xl('A referral source may be specified for each visit.')
815 'gbl_mask_patient_id' => array(
816 xl('Mask for Patient IDs'),
819 xl('Specifies formatting for the external patient ID. # = digit, @ = alpha, * = any character. Empty if not used.')
822 'gbl_mask_invoice_number' => array(
823 xl('Mask for Invoice Numbers'),
826 xl('Specifies formatting for invoice reference numbers. # = digit, @ = alpha, * = any character. Empty if not used.')
829 'gbl_mask_product_id' => array(
830 xl('Mask for Product IDs'),
833 xl('Specifies formatting for product NDC fields. # = digit, @ = alpha, * = any character. Empty if not used.')
836 'hide_billing_widget' => array(
837 xl('Hide Billing Widget'),
839 '0', // default = false
840 xl('This will hide the Billing Widget in the Patient Summary screen')
843 'force_billing_widget_open' => array(
844 xl('Force Billing Widget Open'),
846 '0', // default = false
847 xl('This will force the Billing Widget in the Patient Summary screen to always be open.')
850 'activate_ccr_ccd_report' => array(
851 xl('Activate CCR/CCD Reporting'),
853 '1', // default = true
854 xl('This will activate the CCR(Continuity of Care Record) and CCD(Continuity of Care Document) reporting.')
857 'hide_document_encryption' => array(
858 xl('Hide Encryption/Decryption Options In Document Management'),
860 '1', // default = true
861 xl('This will deactivate document the encryption and decryption features, and hide them in the UI.')
864 'use_custom_immun_list' => array(
865 xl('Use Custom Immunization List'),
867 '0', // default = true
868 xl('This will use the custom immunizations list rather than the standard CVX immunization list.')
871 'preprinted_cms_1500' => array(
872 xl('Prints the CMS 1500 on the Preprinted form'),
874 '0', // default = false
875 xl('Prints the CMS 1500 on the Preprinted form')
878 'cms_top_margin_default' => array(
879 xl('Default top print margin for CMS 1500'),
882 xl('This is the default top print margin for CMS 1500. It will adjust the final printed output up or down.')
885 'cms_left_margin_default' => array(
886 xl('Default left print margin for CMS 1500'),
889 xl('This is the default left print margin for CMS 1500. It will adjust the final printed output left or right.')
893 xl('CMS 1500 Paper Form Format'),
895 '0' => xl('08/05{{CMS 1500 format date revision setting in globals}}'),
896 '1' => xl('02/12{{CMS 1500 format date revision setting in globals}}'),
899 xl('This specifies which revision of the form the billing module should generate')
902 'cms_1500_box_31_format' => array(
903 xl('CMS 1500: Box 31 Format'),
905 '0' => xl('Signature on File'),
906 '1' => xl('Firstname Lastname'),
910 xl('This specifies whether to include date in Box 31.')
913 'cms_1500_box_31_date' => array(
914 xl('CMS 1500: Date in Box 31 (Signature)'),
917 '1' => xl('Date of Service'),
921 xl('This specifies whether to include date in Box 31.')
924 'amendments' => array(
927 '1', // default = true
928 xl('Enable amendments feature')
931 'allow_pat_delete' => array(
932 xl('Allow Administrators to Delete Patients'),
934 '0', // default = false
935 xl('Allow Administrators to Delete Patients')
939 'observation_results_immunization' => array(
940 xl('Immunization Observation Results'),
943 xl('Observation Results in Immunization')
951 'use_custom_daysheet' => array(
952 xl('Use Custom End of Day Report'),
955 '1' => xl('Print End of Day Report 1'),
956 '2' => xl('Print End of Day Report 2'),
957 '3' => xl('Print End of Day Report 3'),
959 '1', // default = Print End of Day Report 1
960 xl('This will allow the use of the custom End of Day report and indicate which report to use.')
963 'daysheet_provider_totals' => array(
964 xl('End of Day by Provider or allow Totals Only'),
966 '0' => xl('Provider'),
967 '1' => xl('Totals Only'),
970 xl('This specifies the Printing of the Custom End of Day Report grouped Provider or allow the Printing of Totals Only')
973 'ledger_begin_date' => array(
974 xl('Beginning Date for Ledger Report'),
976 'Y1' => xl('One Year Ago'),
977 'Y2' => xl('Two Years Ago'),
978 'M6' => xl('Six Months Ago'),
979 'M3' => xl('Three Months Ago'),
980 'M1' => xl('One Month Ago'),
981 'D1' => xl('One Day Ago'),
983 'Y1', // default = One Year
984 xl('This is the Beginning date for the Ledger Report.')
987 'print_next_appointment_on_ledger' => array(
988 xl('Print the Next Appointment on the Bottom of the Ledger'),
990 '1', // default = true
991 xl('This Will Print the Next Appointment on the Bottom of the Patient Ledger')
994 'sales_report_invoice' => array(
995 xl('Display Invoice Number or Patient Name or Both in the Sales Report'),
997 '0' => xl('Invoice Number'),
998 '1' => xl('Patient Name and ID'),
999 '2' => xl('Patient Name and Invoice'),
1002 xl('This will Display the Invoice Number in the Sales Report or the Patient Name and ID or Patient Name and Invoice Number.')
1005 'cash_receipts_report_invoice' => array(
1006 xl('Display Invoice Number or Patient Name in the Cash Receipt Report'),
1008 '0' => xl('Invoice Number'),
1009 '1' => xl('Patient Name'),
1012 xl('Display Invoice Number or Patient Name in the Cash Receipt Report')
1021 'default_search_code_type' => array(
1022 xl('Default Search Code Type'),
1023 'all_code_types', // data type
1025 xl('The default code type to search for in the Fee Sheet.')
1028 'support_fee_sheet_line_item_provider' => array(
1029 xl('Support provider in line item in fee sheet'),
1030 'bool', // data type
1031 '0', // default = false
1032 xl('This Enables provider in line item in the fee sheet')
1035 'default_fee_sheet_line_item_provider' => array(
1036 xl('Default to a provider for line item in the fee sheet'),
1037 'bool', // data type
1038 '0', // default = false
1039 xl('Default to a provider for line item in the fee sheet.(only applicable if Support line item billing in option above)')
1042 'replicate_justification' => array(
1043 xl('Automatically replicate justification codes in Fee Sheet'),
1044 'bool', // data type
1045 '0', // default = false
1046 xl('Automatically replicate justification codes in Fee Sheet (basically fills in the blanks with the justification code above it).')
1049 'display_units_in_billing' => array(
1050 xl('Display the Units Column on the Billing Screen'),
1051 'bool', // data type
1052 '0', // default = false
1053 xl('Display the Units Column on the Billing Screen')
1056 'notes_to_display_in_Billing' => array(
1057 xl('Which notes are to be displayed in the Billing Screen'),
1060 '1' => xl('Encounter Billing Note'),
1061 '2' => xl('Patient Billing Note'),
1065 xl('Display the Encounter Billing Note or Patient Billing Note or Both in the Billing Screen.')
1068 'set_pos_code_encounter' => array(
1069 xl('Set POS code in encounter'),
1070 'bool', // data type
1071 '0', // default = false
1072 xl('This feature will allow the default POS facility code to be overriden from the encounter.')
1075 'use_custom_statement' => array(
1076 xl('Use Custom Statement'),
1077 'bool', // data type
1078 '0', // default = false
1079 xl('This will use the custom Statment showing the description instead of the codes.')
1082 'statement_appearance' => array(
1083 xl('Statement Appearance'),
1085 '0' => xl('Plain Text'),
1086 '1' => xl('Modern/images')
1088 '1', // default = true
1089 xl('Patient statements can be generated as plain text or with a modern graphical appearance.')
1092 'billing_phone_number' => array(
1093 xl('Custom Billing Phone Number'),
1094 'text', // data type
1096 xl('Phone number for billing inquiries')
1099 'show_aging_on_custom_statement' => array(
1100 xl('Show Aging on Custom Statement'),
1101 'bool', // data type
1102 '0', // default = false
1103 xl('This will Show Aging on the custom Statement.')
1106 'use_statement_print_exclusion' => array(
1107 xl('Allow Statement Exclusions from Printing'),
1108 'bool', // data type
1109 '0', // default = false
1110 xl('This will enable the Ability to Exclude Selected Patient Statements from Printing.')
1113 'minimum_amount_to_print' => array(
1114 xl('Total Minimum Amount of Statement to Allow Printing'),
1117 xl('Total Minimum Dollar Amount of Statement to Allow Printing.(only applicable if Allow Statement Exclusions from Printing is enabled)')
1120 'statement_bill_note_print' => array(
1121 xl('Print Patient Billing Note'),
1122 'bool', // data type
1123 '0', // default = false
1124 xl('This will allow printing of the Patient Billing Note on the statements.')
1127 'number_appointments_on_statement' => array(
1128 xl('Number of Appointments on Statement'),
1131 xl('The Number of Future Appointments to Display on the Statement.')
1134 'statement_message_to_patient' => array(
1135 xl('Print Custom Message'),
1136 'bool', // data type
1137 '0', // default = false
1138 xl('This will allow printing of a custom Message on the statements.')
1141 'statement_msg_text' => array(
1142 xl('Custom Statement message'),
1143 'text', // data type
1145 xl('Text for Custom statement message.')
1148 'use_dunning_message' => array(
1149 xl('Use Custom Dunning Messages'),
1150 'bool', // data type
1151 '0', // default = false
1152 xl('This will allow use of the custom Dunning Messages on the statements.')
1155 'first_dun_msg_set' => array(
1156 xl('Number of days before showing first account message'),
1159 xl('Number of days before showing first account message.')
1162 'first_dun_msg_text' => array(
1163 xl('First account message'),
1164 'text', // data type
1166 xl('Text for first account message.')
1169 'second_dun_msg_set' => array(
1170 xl('Number of days before showing second account message'),
1173 xl('Number of days before showing second account message')
1176 'second_dun_msg_text' => array(
1177 xl('Second account message'),
1178 'text', // data type
1180 xl('Text for second account message.')
1183 'third_dun_msg_set' => array(
1184 xl('Number of days before showing third account message'),
1187 xl('Number of days before showing third account message')
1190 'third_dun_msg_text' => array(
1191 xl('Third account message'),
1192 'text', // data type
1194 xl('Text for third account message.')
1197 'fourth_dun_msg_set' => array(
1198 xl('Number of days before showing fourth account message'),
1201 xl('Number of days before showing fourth account message')
1204 'fourth_dun_msg_text' => array(
1205 xl('Fourth account message'),
1206 'text', // data type
1208 xl('Text for fourth account message.')
1211 'fifth_dun_msg_set' => array(
1212 xl('Number of days before showing fifth account message'),
1215 xl('Number of days before showing fifth account message')
1218 'fifth_dun_msg_text' => array(
1219 xl('Fifth account message'),
1220 'text', // data type
1222 xl('Text for fifth account message.')
1224 'save_codes_history' => array(
1225 xl('Save codes history'),
1226 'bool', // data type
1228 xl('Save codes history')
1236 'esign_all' => array(
1237 xl('Allows E-Sign on the entire encounter'),
1238 'bool', // data type
1239 '0', // default = false
1240 xl('This will enable signing an entire encounter, rather than individual forms')
1243 'lock_esign_all' => array(
1244 xl('Lock e-signed encounters and their forms'),
1245 'bool', // data type
1246 '0', // default = false
1247 xl('This will disable the Edit button on all forms whose parent encounter is e-signed')
1250 'esign_individual' => array(
1251 xl('Allows E-Signing Individual Forms'),
1252 'bool', // data type
1253 '1', // default = false
1254 xl('This will enable signing individual forms separately')
1257 'lock_esign_individual' => array(
1258 xl('Lock an e-signed form individually'),
1259 'bool', // data type
1260 '1', // default = false
1261 xl('This will disable the Edit button on any form that is e-signed')
1264 'esign_lock_toggle' => array(
1265 xl('Enable lock toggle'),
1266 'bool', // data type
1267 '0', // default = false
1268 xl('This will give the user the option to lock (separate locking and signing)')
1271 'esign_report_hide_empty_sig' => array(
1272 xl('Hide Empty E-Sign Logs On Report'),
1273 'bool', // data type
1274 '1', // default = false
1275 xl('This will hide empty e-sign logs on the patient report')
1280 'Documents' => array(
1282 'document_storage_method' => array(
1283 xl('Document Storage Method'),
1285 '0' => xl('Hard Disk'),
1286 '1' => xl('CouchDB')
1289 xl('Option to save method of document storage.')
1292 'couchdb_host' => array(
1293 xl('CouchDB HostName'),
1298 'couchdb_user' => array(
1299 xl('CouchDB UserName'),
1302 xl('Username to connect to CouchDB'),
1304 'couchdb_pass' => array(
1305 xl('CouchDB Password'),
1308 xl('Password to connect to CouchDB'),
1310 'couchdb_port' => array(
1316 'couchdb_dbase' => array(
1317 xl('CouchDB Database'),
1320 xl('CouchDB database name'),
1322 'couchdb_log' => array(
1323 xl('CouchDB Log Enable'),
1326 xl('Enable log for document uploads/downloads to CouchDB'),
1329 'expand_document_tree' => array(
1330 xl('Expand All Document Categories'),
1331 'bool', // data type
1332 '0', // default = false
1333 xl('Expand All Document Categories by Default')
1336 'patient_id_category_name' => array(
1337 xl('Patient ID Category Name'),
1338 'text', // data type
1339 'Patient ID card', // default
1340 xl('Optional category name for an ID Card image that can be viewed from the patient summary page.')
1343 'patient_photo_category_name' => array(
1344 xl('Patient Photo Category Name'),
1345 'text', // data type
1346 'Patient Photograph', // default
1347 xl('Optional category name for photo images that can be viewed from the patient summary page.')
1350 'lab_results_category_name' => array(
1351 xl('Lab Results Category Name'),
1352 'text', // data type
1353 'Lab Report', // default
1354 xl('Document category name for storage of electronically received lab results.')
1357 'gbl_mdm_category_name' => array(
1358 xl('MDM Document Category Name'),
1359 'text', // data type
1360 'Lab Report', // default
1361 xl('Document category name for storage of electronically received MDM documents.')
1363 'generate_doc_thumb' => array(
1364 xl('Generate thumbnail'),
1367 xl('Generate thumbnail images'),
1369 'thumb_doc_max_size' => array(
1370 xl('Thumbnail size'),
1371 'text', // data type
1373 xl('Maximum size of thumbnail file')
1379 'Calendar' => array(
1381 'disable_calendar' => array(
1382 xl('Disable Calendar'),
1383 'bool', // data type
1385 xl('Do not display the calendar.')
1388 'schedule_start' => array(
1389 xl('Calendar Starting Hour'),
1392 xl('Beginning hour of day for calendar events.')
1395 'schedule_end' => array(
1396 xl('Calendar Ending Hour'),
1399 xl('Ending hour of day for calendar events.')
1402 'calendar_interval' => array(
1403 xl('Calendar Interval'),
1413 xl('The time granularity of the calendar and the smallest interval in minutes for an appointment slot.')
1416 'calendar_view_type' => array(
1417 xl('Default Calendar View'),
1420 'week' => xl('Week'),
1421 'month' => xl('Month'),
1424 xl('This sets the Default Calendar View, Default is Day.')
1426 'first_day_week' => array(
1427 xl('First day in the week'),
1429 '1' => xl('Monday'),
1430 '0' => xl('Sunday'),
1431 '6' => xl('Saturday')
1434 xl('Your first day of the week.')
1436 'calendar_appt_style' => array(
1437 xl('Appointment Display Style'),
1439 '1' => xl('Last name'),
1440 '2' => xl('Last name, first name'),
1441 '3' => xl('Last name, first name (title)'),
1442 '4' => xl('Last name, first name (title: comments)'),
1445 xl('This determines how appointments display on the calendar.')
1448 'event_color' => array(
1449 xl('Appointment/Event Color'),
1451 '1' => xl('Category Color Schema'),
1452 '2' => xl('Facility Color Schema'),
1455 xl('This determines which color schema used for appointment')
1458 'number_of_appts_to_show' => array(
1459 xl('Appointments - Patient Summary - Number to Display'),
1462 xl('Number of Appointments to display in the Patient Summary')
1465 'number_of_group_appts_to_show' => array(
1466 xl('Appointments - Group Summary - Number to Display'),
1469 xl('Number of Appointments to display in the Group Summary')
1471 'number_of_ex_appts_to_show' => array(
1472 xl('Excluded Appointments - Tooltip - Number to Display'),
1475 xl('Number of Excluded Appointments to display in the Tooltip')
1479 'patient_portal_appt_display_num' => array(
1480 xl('Appointments - Onsite Patient Portal - Number to Display'),
1483 xl('Number of Appointments to display in the Onsite Patient Portal')
1486 'appt_display_sets_option' => array(
1487 xl('Appointment Display Sets - Ignore Display Limit (Last Set)'),
1488 'bool', // data type
1490 xl('Override (if necessary) the appointment display limit to allow all appointments to be displayed for the last set')
1493 'appt_display_sets_color_1' => array(
1494 xl('Appointment Display Sets - Color 1'),
1497 xl('Color for odd sets (except when last set is odd and all member appointments are displayed and at least one subsequent scheduled appointment exists (not displayed) or not all member appointments are displayed).')
1500 'appt_display_sets_color_2' => array(
1501 xl('Appointment Display Sets - Color 2'),
1504 xl('Color for even sets (except when last set is even and all member appointments are displayed and at least one subsequent scheduled appointment exists (not displayed) or not all member appointments are displayed).')
1507 'appt_display_sets_color_3' => array(
1508 xl('Appointment Display Sets - Color 3'),
1511 xl('Color for the last set when all member appointments are displayed and at least one subsequent scheduled appointment exists (not displayed).')
1514 'appt_display_sets_color_4' => array(
1515 xl('Appointment Display Sets - Color 4'),
1518 xl('Color for the last set when not all member appointments are displayed.')
1521 'appt_recurrences_widget' => array(
1522 xl('Recurrent Appointment Display Widget'),
1523 'bool', // data type
1525 xl('Display the recurrent appointment widget in the patient summary.')
1528 'num_past_appointments_to_show' => array(
1529 xl('Past Appointment Display Widget'),
1531 '0', // default = false
1532 xl('A positive number will show that many past appointments on a Widget in the Patient Summary screen (a negative number will show the past appointments in descending order)')
1535 'docs_see_entire_calendar' => array(
1536 xl('Providers See Entire Calendar'),
1537 'bool', // data type
1539 xl('Check this if you want providers to see all appointments by default and not just their own.')
1542 'auto_create_new_encounters' => array(
1543 xl('Auto-Create New Encounters'),
1544 'bool', // data type
1546 xl('Automatically create a new encounter when an appointment check in status is selected.')
1548 'allow_early_check_in' => array(
1549 xl('Allow Early Check In'),
1550 'bool', // data type
1552 xl("Allow Check In before the appointment's time.")
1554 'disable_pat_trkr' => array(
1555 xl('Disable Patient Flow Board'),
1556 'bool', // data type
1558 xl('Do not display the patient flow board.')
1561 'ptkr_visit_reason' => array(
1562 xl('Show Visit Reason in Patient Flow Board'),
1563 'bool', // data type
1564 '0', // default = false
1565 xl('When Checked, Visit Reason Will Show in Patient Flow Board.')
1568 'ptkr_show_pid' => array(
1569 xl('Show Patient ID in Patient Flow Board'),
1570 'bool', // data type
1571 '1', // default = true
1572 xl('When Checked, Patient ID Will Show in Patient Flow Board.')
1575 'ptkr_show_encounter' => array(
1576 xl('Show Patient Encounter Number in Patient Flow Board'),
1577 'bool', // data type
1578 '1', // default = true
1579 xl('When Checked, Patient Encounter Number Will Show in Patient Flow Board.')
1582 'pat_trkr_timer' => array(
1583 xl('Patient Flow Board Timer Interval'),
1585 '0' => xl('No automatic refresh'),
1594 xl('The screen refresh time in Seconds for the Patient Flow Board Screen.')
1597 'checkout_roll_off' => array(
1598 xl('Number of Minutes to display completed checkouts'),
1601 xl('Number of Minutes to display completed checkouts. Zero is continuous display')
1604 'drug_screen' => array(
1605 xl('Enable Random Drug Testing'),
1606 'bool', // data type
1608 xl('Allow Patient Flow Board to Select Patients for Drug Testing.')
1611 'drug_testing_percentage' => array(
1612 xl('Percentage of Patients to Drug Test'),
1615 xl('Percentage of Patients to select for Random Drug Testing.')
1618 'maximum_drug_test_yearly' => array(
1619 xl('Maximum number of times a Patient can be tested in a year'),
1622 xl('Maximum number of times a Patient can be tested in a year. Zero is no limit.')
1625 'submit_changes_for_all_appts_at_once' => array(
1626 xl('Submit Changes For All Appts At Once'),
1627 'bool', // data type
1629 xl('Enables to submit changes for all appointments of a recurrence at once.')
1637 'Security' => array(
1638 'sql_string_no_show_screen' => array(
1639 xl('Mode - Do Not Show SQL Queries'),
1640 'bool', // data type
1642 xl('Do not allow SQL queries to be outputted to screen.')
1645 xl('Idle Session Timeout Seconds'),
1648 xl('Maximum idle time in seconds before logout. Default is 7200 (2 hours).')
1650 'secure_upload' => array(
1651 xl('Secure Upload Files with White List'),
1652 'bool', // data type
1654 xl('Block all files types that are not found in the White List. Can find interface to edit the White List at Administration->Files.')
1656 'secure_password' => array(
1657 xl('Require Strong Passwords'),
1658 'bool', // data type
1660 xl('Strong password means at least 8 characters, and at least three of: a number, a lowercase letter, an uppercase letter, a special character.')
1662 'password_history' => array(
1663 xl('Require Unique Passwords'),
1664 'bool', // data type
1666 xl('Means none of last three passwords are allowed when changing a password.')
1668 'password_compatibility' => array(
1669 xl('Permit unsalted passwords'),
1670 'bool', // data type
1672 xl('After migration from the old password mechanisms where passwords are stored in the users table without salt is complete, this flag should be set to false so that only authentication by the new method is possible')
1675 'password_expiration_days' => array(
1676 xl('Default Password Expiration Days'),
1679 xl('Default password expiration period in days. 0 means this feature is disabled.')
1682 'password_grace_time' => array(
1683 xl('Password Expiration Grace Period'),
1686 xl('Period in days where a user may login with an expired password.')
1689 'is_client_ssl_enabled' => array(
1690 xl('Enable Client SSL'),
1691 'bool', // data type
1693 xl('Enable client SSL certificate authentication.')
1696 'certificate_authority_crt' => array(
1697 xl('Path to CA Certificate File'),
1698 'text', // data type
1700 xl('Set this to the full absolute path. For creating client SSL certificates for HTTPS.')
1703 'certificate_authority_key' => array(
1704 xl('Path to CA Key File'),
1705 'text', // data type
1707 xl('Set this to the full absolute path. For creating client SSL certificates for HTTPS.')
1710 'client_certificate_valid_in_days' => array(
1711 xl('Client Certificate Expiration Days'),
1714 xl('Number of days that the client certificate is valid.')
1717 'Emergency_Login_email_id' => array(
1718 xl('Emergency Login Email Address'),
1719 'text', // data type
1721 xl('Email address, if any, to receive emergency login user activation messages.')
1724 'new_validate' => array(
1725 xl('New form validation'),
1728 xl('New form validation')
1731 'allow_multiple_databases' => array(
1732 xl('Allow multiple databases'),
1735 xl('Allow to use with multiple database')
1738 'safe_key_database' => array(
1739 xl('Safe key database'),
1740 'text', // data type
1742 xl('Key for multiple database credentials encryption')
1745 'use_active_directory' => array(
1746 xl('Use Active Directory'),
1749 xl('If enabled, uses the specified active directory for login and authentication.')
1752 'account_suffix' => array(
1753 xl('Active Directory - Suffix Of Account'),
1756 xl('The suffix of the account.')
1760 xl('Active Directory - Domains Base'),
1763 xl('Users is the standard windows CN, replace the DC stuff with your domain.')
1766 'domain_controllers' => array(
1767 xl('Active Directory - Domains Controllers'),
1770 xl('The IP address of your domain controller(s).')
1775 // Notifications Tab
1777 'Notifications' => array(
1779 'patient_reminder_sender_name' => array(
1780 xl('Patient Reminder Sender Name'),
1781 'text', // data type
1783 xl('Name of the sender for patient reminders.')
1786 'patient_reminder_sender_email' => array(
1787 xl('Patient Reminder Sender Email'),
1788 'text', // data type
1790 xl('Email address of the sender for patient reminders. Replies to patient reminders will be directed to this address. It is important to use an address from your clinic\'s domain to avoid help prevent patient reminders from going to junk mail folders.')
1793 'practice_return_email_path' => array(
1794 xl('Notification Email Address'),
1795 'text', // data type
1797 xl('Email address, if any, to receive administrative notifications.')
1800 'EMAIL_METHOD' => array(
1801 xl('Email Transport Method'),
1803 'PHPMAIL' => 'PHPMAIL',
1804 'SENDMAIL' => 'SENDMAIL',
1808 xl('Method for sending outgoing email.')
1811 'SMTP_HOST' => array(
1812 xl('SMTP Server Hostname'),
1813 'text', // data type
1814 'localhost', // default
1815 xl('If SMTP is used, the server`s hostname or IP address.')
1818 'SMTP_PORT' => array(
1819 xl('SMTP Server Port Number'),
1822 xl('If SMTP is used, the server`s TCP port number (usually 25).')
1825 'SMTP_USER' => array(
1826 xl('SMTP User for Authentication'),
1827 'text', // data type
1829 xl('Must be empty if SMTP authentication is not used.')
1832 'SMTP_PASS' => array(
1833 xl('SMTP Password for Authentication'),
1834 'text', // data type
1836 xl('Must be empty if SMTP authentication is not used.')
1839 'SMTP_SECURE' => array(
1840 xl('SMTP Security Protocol'),
1847 xl('SMTP security protocol to connect with. Required by some servers such as gmail.')
1850 'EMAIL_NOTIFICATION_HOUR' => array(
1851 xl('Email Notification Hours'),
1854 xl('Number of hours in advance to send email notifications.')
1857 'SMS_NOTIFICATION_HOUR' => array(
1858 xl('SMS Notification Hours'),
1861 xl('Number of hours in advance to send SMS notifications.')
1864 'SMS_GATEWAY_USENAME' => array(
1865 xl('SMS Gateway Username'),
1866 'text', // data type
1868 xl('Username for SMS Gateway.')
1871 'SMS_GATEWAY_PASSWORD' => array(
1872 xl('SMS Gateway Password'),
1873 'text', // data type
1875 xl('Password for SMS Gateway.')
1878 'SMS_GATEWAY_APIKEY' => array(
1879 xl('SMS Gateway API Key'),
1880 'text', // data type
1882 xl('API key for SMS Gateway.')
1885 'phone_notification_hour' => array(
1886 xl('Phone Notification Hour'),
1889 xl('Number of hours in advance to send Phone notification.')
1892 'phone_gateway_username' => array(
1893 xl('Phone Gateway Username'),
1894 'text', // data type
1896 xl('Username for Phone Gateway.')
1899 'phone_gateway_password' => array(
1900 xl('Phone Gateway Password'),
1901 'text', // data type
1903 xl('Password for Phone Gateway.')
1906 'phone_gateway_url' => array(
1907 xl('Phone Gateway URL'),
1908 'text', // data type
1910 xl('URL for Phone Gateway.')
1915 // CDR (Clinical Decision Rules)
1919 'enable_cdr' => array(
1920 xl('Enable Clinical Decisions Rules (CDR)'),
1921 'bool', // data type
1923 xl('Enable Clinical Decisions Rules (CDR)')
1926 'enable_allergy_check' => array(
1927 xl('Enable Allergy Check'),
1928 'bool', // data type
1930 xl('Enable Allergy Check Against Medications and Prescriptions')
1933 'enable_alert_log' => array(
1934 xl('Enable Alert Log'),
1935 'bool', // data type
1937 xl('Enable Alert Logging')
1940 'enable_cdr_new_crp' => array(
1941 xl('Enable Clinical Passive New Reminder(s) Popup'),
1942 'bool', // data type
1944 xl('Enable Clinical Passive New Reminder(s) Popup')
1947 'enable_cdr_crw' => array(
1948 xl('Enable Clinical Passive Reminder Widget'),
1949 'bool', // data type
1951 xl('Enable Clinical Passive Reminder Widget')
1954 'enable_cdr_crp' => array(
1955 xl('Enable Clinical Active Reminder Popup'),
1956 'bool', // data type
1958 xl('Enable Clinical Active Reminder Popup')
1961 'enable_cdr_prw' => array(
1962 xl('Enable Patient Reminder Widget'),
1963 'bool', // data type
1965 xl('Enable Patient Reminder Widget')
1968 'enable_cqm' => array(
1969 xl('Enable CQM Reporting'),
1970 'bool', // data type
1972 xl('Enable Clinical Quality Measure (CQM) Reporting')
1975 'pqri_registry_name' => array(
1976 xl('PQRI Registry Name'),
1977 'text', // data type
1978 'Model Registry', // default
1979 xl('PQRI Registry Name')
1982 'pqri_registry_id' => array(
1983 xl('PQRI Registry ID'),
1984 'text', // data type
1985 '125789123', // default
1986 xl('PQRI Registry ID')
1989 'enable_amc' => array(
1990 xl('Enable AMC Reporting'),
1991 'bool', // data type
1993 xl('Enable Automated Measure Calculations (AMC) Reporting')
1996 'enable_amc_prompting' => array(
1997 xl('Enable AMC Prompting'),
1998 'bool', // data type
2000 xl('Enable Prompting For Automated Measure Calculations (AMC) Required Data')
2003 'enable_amc_tracking' => array(
2004 xl('Enable AMC Tracking'),
2005 'bool', // data type
2007 xl('Enable Reporting of Tracking Date For Automated Measure Calculations (AMC)')
2010 'cdr_report_nice' => array(
2011 xl('CDR Reports Processing Priority'),
2013 '' => xl('Default Priority'),
2014 '5' => xl('Moderate Priority'),
2015 '10' => xl('Moderate/Low Priority'),
2016 '15' => xl('Low Priority'),
2017 '20' => xl('Lowest Priority')
2020 xl('Set processing priority for CDR engine based reports.')
2023 'pat_rem_clin_nice' => array(
2024 xl('Patient Reminder Creation Processing Priority'),
2026 '' => xl('Default Priority'),
2027 '5' => xl('Moderate Priority'),
2028 '10' => xl('Moderate/Low Priority'),
2029 '15' => xl('Low Priority'),
2030 '20' => xl('Lowest Priority')
2033 xl('Set processing priority for creation of Patient Reminders (in full clinic mode).')
2036 'report_itemizing_standard' => array(
2037 xl('Enable Standard Report Itemization'),
2038 'bool', // data type
2040 xl('Enable Itemization of Standard Clinical Rules Reports')
2043 'report_itemizing_cqm' => array(
2044 xl('Enable CQM Report Itemization'),
2045 'bool', // data type
2047 xl('Enable Itemization of CQM Reports')
2050 'report_itemizing_amc' => array(
2051 xl('Enable AMC Report Itemization'),
2052 'bool', // data type
2054 xl('Enable Itemization of AMC Reports')
2056 'dated_reminders_max_alerts_to_show' => array(
2057 xl('Dated reminders maximum alerts to show'),
2060 xl('Dated reminders maximum alerts to show')
2062 'patient_birthday_alert' => array(
2063 xl('Alert on patient birthday'),
2065 '0' => xl('No alert'),
2066 '1' => xl('Alert only on birthday'),
2067 '2' => xl('Alert on and after birthday')
2070 xl('Alert on patient birthday')
2072 'patient_birthday_alert_manual_off' => array(
2073 xl('Patient birthday alert requires turning off'),
2074 'bool', // data type
2076 xl('Patient birthday alert requires turning off')
2084 'enable_auditlog' => array(
2085 xl('Enable Audit Logging'),
2086 'bool', // data type
2088 xl('Enable Audit Logging')
2091 'audit_events_patient-record' => array(
2092 xl('Audit Logging Patient Record'),
2093 'bool', // data type
2095 xl('Enable logging of patient record modifications.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2098 'audit_events_scheduling' => array(
2099 xl('Audit Logging Scheduling'),
2100 'bool', // data type
2102 xl('Enable logging of scheduling activities.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2105 'audit_events_order' => array(
2106 xl('Audit Logging Order'),
2107 'bool', // data type
2109 xl('Enable logging of ordering activities.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2112 'audit_events_security-administration' => array(
2113 xl('Audit Logging Security Administration'),
2114 'bool', // data type
2116 xl('Enable logging of security and administration activities.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2119 'audit_events_backup' => array(
2120 xl('Audit Logging Backups'),
2121 'bool', // data type
2123 xl('Enable logging of backup related activities.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2126 'audit_events_other' => array(
2127 xl('Audit Logging Miscellaneous'),
2128 'bool', // data type
2130 xl('Enable logging of miscellaneous activities.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2133 'audit_events_query' => array(
2134 xl('Audit Logging SELECT Query'),
2135 'bool', // data type
2137 xl('Enable logging of all SQL SELECT queries.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2140 'audit_events_cdr' => array(
2141 xl('Audit CDR Engine Queries'),
2142 'bool', // data type
2144 xl('Enable logging of CDR Engine Queries.') . ' (' . xl('Note that Audit Logging needs to be enabled above') . ')'
2147 'enable_atna_audit' => array(
2148 xl('Enable ATNA Auditing'),
2149 'bool', // data type
2151 xl('Enable Audit Trail and Node Authentication (ATNA).')
2154 'atna_audit_host' => array(
2155 xl('ATNA audit host'),
2156 'text', // data type
2158 xl('The hostname of the ATNA audit repository machine.')
2161 'atna_audit_port' => array(
2162 xl('ATNA audit port'),
2163 'text', // data type
2165 xl('Listening port of the RFC 5425 TLS syslog server.')
2168 'atna_audit_localcert' => array(
2169 xl('ATNA audit local certificate'),
2170 'text', // data type
2172 xl('Certificate to send to RFC 5425 TLS syslog server.')
2175 'atna_audit_cacert' => array(
2176 xl('ATNA audit CA certificate'),
2177 'text', // data type
2179 xl('CA Certificate for verifying the RFC 5425 TLS syslog server.')
2182 //July 1, 2014: Ensoftek: Flag to enable/disable audit log encryption
2183 'enable_auditlog_encryption' => array(
2184 xl('Enable Audit Log Encryption'),
2185 'bool', // data type
2187 xl('Enable Audit Log Encryption')
2190 'billing_log_option' => array(
2191 xl('Billing Log Option'),
2193 '1' => xl('Billing Log Append'),
2194 '2' => xl('Billing Log Overwrite')
2197 xl('Billing log setting to append or overwrite the log file.')
2200 'gbl_print_log_option' => array(
2201 xl('Printing Log Option'),
2203 '0' => xl('No logging'),
2204 '1' => xl('Hide print feature'),
2205 '2' => xl('Log entire document'),
2208 xl('Individual pages can override 2nd and 3rd options by implementing a log message.')
2213 // Miscellaneous Tab
2215 'Miscellaneous' => array(
2217 'mysql_bin_dir' => array(
2218 xl('Path to MySQL Binaries'),
2219 'text', // data type
2220 $mysql_bin_dir, // default
2221 xl('Full path to directory containing MySQL executables.')
2224 'perl_bin_dir' => array(
2225 xl('Path to Perl Binaries'),
2226 'text', // data type
2227 $perl_bin_dir, // default
2228 xl('Full path to directory containing Perl executables.')
2231 'temporary_files_dir' => array(
2232 xl('Path to Temporary Files'),
2233 'text', // data type
2234 $temporary_files_dir, // default
2235 xl('Full path to directory used for temporary files.')
2238 'backup_log_dir' => array(
2239 xl('Path for Event Log Backup'),
2240 'text', // data type
2241 $backup_log_dir, // default
2242 xl('Full path to directory for event log backup.')
2245 'state_data_type' => array(
2246 xl('State Data Type'),
2248 '2' => xl('Text field'),
2249 '1' => xl('Single-selection list'),
2250 '26' => xl('Single-selection list with ability to add to the list'),
2253 xl('Field type to use for employer or subscriber state in demographics.')
2256 'state_list' => array(
2258 'text', // data type
2260 xl('List used by above State Data Type option.')
2263 'state_custom_addlist_widget' => array(
2264 xl('State List Widget Custom Fields'),
2265 'bool', // data type
2267 xl('Show the custom state form for the add list widget (will ask for title and abbreviation).')
2270 'country_data_type' => array(
2271 xl('Country Data Type'),
2273 '2' => xl('Text field'),
2274 '1' => xl('Single-selection list'),
2275 '26' => xl('Single-selection list with ability to add to the list'),
2278 xl('Field type to use for employer or subscriber country in demographics.')
2281 'country_list' => array(
2283 'text', // data type
2284 'country', // default
2285 xl('List used by above Country Data Type option.')
2288 'print_command' => array(
2289 xl('Print Command'),
2290 'text', // data type
2291 'lpr -P HPLaserjet6P -o cpi=10 -o lpi=6 -o page-left=72 -o page-top=72',
2292 xl('Shell command for printing from the server.')
2295 'default_chief_complaint' => array(
2296 xl('Default Reason for Visit'),
2297 'text', // data type
2299 xl('You may put text here as the default complaint in the New Patient Encounter form.')
2302 'default_new_encounter_form' => array(
2303 xl('Default Encounter Form ID'),
2304 'text', // data type
2306 xl('To automatically open the specified form. Some sports teams use football_injury_audit here.')
2309 'MedicareReferrerIsRenderer' => array(
2310 xl('Medicare Referrer Is Renderer'),
2311 'bool', // data type
2312 '0', // default = true
2313 xl('For Medicare only, forces the referring provider to be the same as the rendering provider.')
2316 'post_to_date_benchmark' => array(
2317 xl('Financial Close Date (yyyy-mm-dd)'),
2318 'text', // data type
2319 date('Y-m-d', time() - (10 * 24 * 60 * 60)), // default
2320 xl('The payments posted cannot go below this date.This ensures that after taking the final report nobody post for previous dates.')
2323 'enable_hylafax' => array(
2324 xl('Enable Hylafax Support'),
2325 'bool', // data type
2327 xl('Enable Hylafax Support')
2330 'hylafax_server' => array(
2331 xl('Hylafax Server'),
2332 'text', // data type
2333 'localhost', // default
2334 xl('Hylafax server hostname.')
2337 'hylafax_basedir' => array(
2338 xl('Hylafax Directory'),
2339 'text', // data type
2340 '/var/spool/hylafax', // default
2341 xl('Location where Hylafax stores faxes.')
2344 'hylafax_enscript' => array(
2345 xl('Hylafax Enscript Command'),
2346 'text', // data type
2347 'enscript -M Letter -B -e^ --margins=36:36:36:36', // default
2348 xl('Enscript command used by Hylafax.')
2351 'enable_scanner' => array(
2352 xl('Enable Scanner Support'),
2353 'bool', // data type
2355 xl('Enable Scanner Support')
2358 'scanner_output_directory' => array(
2359 xl('Scanner Directory'),
2360 'text', // data type
2361 '/mnt/scan_docs', // default
2362 xl('Location where scans are stored.')
2370 'portal_onsite_two_enable' => array(
2371 xl('Enable Version 2 Onsite Patient Portal'),
2372 'bool', // data type
2374 xl('Enable Version 2 Onsite Patient Portal.')
2377 'portal_onsite_two_address' => array(
2378 xl('Version 2 Onsite Patient Portal Site Address'),
2379 'text', // data type
2380 'https://your_web_site.com/openemr/portal',
2381 xl('Website link for the Version 2 Onsite Patient Portal.')
2384 'portal_onsite_enable' => array(
2385 xl('Enable Version 1 Onsite Patient Portal'),
2386 'bool', // data type
2388 xl('Enable Version 1 Onsite Patient Portal.')
2391 'portal_onsite_address' => array(
2392 xl('Version 1 Onsite Patient Portal Site Address'),
2393 'text', // data type
2394 'https://your_web_site.com/openemr/patients',
2395 xl('Website link for the Version 1 Onsite Patient Portal.')
2398 'portal_onsite_document_download' => array(
2399 xl('Enable Onsite Patient Portal Document Download'),
2400 'bool', // data type
2402 xl('Enables the ability to download documents in the Onsite Patient Portal by the user.')
2405 'portal_offsite_enable' => array(
2406 xl('Enable Offsite Patient Portal'),
2407 'bool', // data type
2409 xl('Enable Offsite Patient Portal.')
2411 'portal_offsite_providerid' => array(
2412 xl('Offsite Patient Portal Provider ID'),
2413 'text', // data type
2415 xl('Offsite Patient Portal Provider ID(Put Blank If not Registered).')
2418 'portal_offsite_username' => array(
2419 xl('Offsite Patient Portal Username'),
2420 'text', // data type
2422 xl('Offsite Patient Portal Username(Put Blank If not Registered).')
2425 'portal_offsite_password' => array(
2426 xl('Offsite Patient Portal Password'),
2429 xl('Offsite Patient Portal Password(Put Blank If not Registered).')
2432 'portal_offsite_address' => array(
2433 xl('Offsite Patient Portal Site Address'),
2434 'text', // data type
2435 'https://ssh.mydocsportal.com/provider.php',
2436 xl('Offsite Https link for the Patient Portal.')
2439 'portal_offsite_address_patient_link' => array(
2440 xl('Offsite Patient Portal Site Address (Patient Link)'),
2441 'text', // data type
2442 'https://ssh.mydocsportal.com',
2443 xl('Offsite Https link for the Patient Portal.(Patient Link)')
2446 // Currently the "CMS Portal" supports WordPress. Other Content Management
2447 // Systems may be supported in the future.
2449 'gbl_portal_cms_enable' => array(
2450 xl('Enable CMS Portal'),
2451 'bool', // data type
2453 xl('Enable support for the open source WordPress Portal by Sunset Systems')
2456 'gbl_portal_cms_address' => array(
2457 xl('CMS Portal Site Address'),
2458 'text', // data type
2459 'https://your_cms_site.com/',
2460 xl('URL for the WordPress site that supports the portal')
2463 'gbl_portal_cms_username' => array(
2464 xl('CMS Portal Username'),
2465 'text', // data type
2467 xl('Login name of WordPress user for portal access')
2470 'gbl_portal_cms_password' => array(
2471 xl('CMS Portal Password'),
2472 'text', // data type
2474 xl('Password for the above user')
2481 'Connectors' => array(
2483 'erx_enable' => array(
2484 xl('Enable NewCrop eRx Service'),
2487 xl('Enable NewCrop eRx Service.') +
' ' +
2488 xl('Contact Medical Information Integration, LLC at http://mi-squared.com or ZH Healthcare at http://zhservices.com for subscribing to the NewCrop eRx service.')
2491 'erx_newcrop_path' => array(
2492 xl('NewCrop eRx Site Address'),
2494 'https://secure.newcropaccounts.com/InterfaceV7/RxEntry.aspx',
2495 xl('URL for NewCrop eRx Site Address.')
2498 'erx_newcrop_path_soap' => array(
2499 xl('NewCrop eRx Web Service Address'),
2501 'https://secure.newcropaccounts.com/v7/WebServices/Update1.asmx?WSDL;https://secure.newcropaccounts.com/v7/WebServices/Patient.asmx?WSDL',
2502 xl('URLs for NewCrop eRx Service Address, separated by a semi-colon.')
2505 'erx_soap_ttl_allergies' => array(
2506 xl('NewCrop eRx SOAP Request Time-To-Live for Allergies'),
2509 xl('Time-To-Live for NewCrop eRx Allergies SOAP Request in seconds.')
2512 'erx_soap_ttl_medications' => array(
2513 xl('NewCrop eRx SOAP Request Time-To-Live for Medications'),
2516 xl('Time-To-Live for NewCrop eRx Medications SOAP Request in seconds.')
2519 'erx_account_partner_name' => array(
2520 xl('NewCrop eRx Partner Name'),
2523 xl('Partner Name issued for NewCrop eRx service.')
2526 'erx_account_name' => array(
2527 xl('NewCrop eRx Name'),
2530 xl('Account Name issued for NewCrop eRx service.')
2533 'erx_account_password' => array(
2534 xl('NewCrop eRx Password'),
2537 xl('Account Password issued for NewCrop eRx service.')
2540 'erx_account_id' => array(
2541 xl('NewCrop eRx Account Id'),
2544 xl('Account Id issued for NewCrop eRx service, used to separate multi-facility accounts.')
2547 'erx_upload_active' => array(
2548 xl('Only upload active prescriptions'),
2551 xl('Only upload active prescriptions to NewCrop eRx.')
2554 'erx_import_status_message' => array(
2555 xl('Enable NewCrop eRx import status message'),
2558 xl('Enable import status message after visiting NewCrop eRx.')
2561 'erx_medication_display' => array(
2562 xl('Do not display NewCrop eRx Medications uploaded'),
2565 xl('Do not display Medications uploaded after visiting NewCrop eRx.')
2568 'erx_allergy_display' => array(
2569 xl('Do not display NewCrop eRx Allergy uploaded'),
2572 xl('Do not display Allergies uploaded after visiting NewCrop eRx.')
2575 'erx_default_patient_country' => array(
2576 xl('NewCrop eRx Default Patient Country'),
2580 'CA' => xl('Canada'),
2581 'MX' => xl('Mexico'),
2584 xl('Default Patient Country sent to NewCrop eRx, only if patient country is not set.'),
2587 'erx_debug_setting' => array(
2588 xl('NewCrop eRx Debug Setting'),
2591 1 => xl('Request Only'),
2592 2 => xl('Response Only'),
2593 3 => xl('Request & Response'),
2596 xl('Log all NewCrop eRx Requests and / or Responses.'),
2599 'ccda_alt_service_enable' => array(
2600 xl('Enable C-CDA Alternate Service'),
2603 1 => xl('Care Coordination Only'),
2604 2 => xl('Portal Only'),
2608 xl('Enable C-CDA Alternate Service')
2611 'phimail_enable' => array(
2612 xl('Enable phiMail Direct Messaging Service'),
2613 'bool', // data type
2615 xl('Enable phiMail Direct Messaging Service')
2618 'phimail_server_address' => array(
2619 xl('phiMail Server Address'),
2620 'text', // data type
2621 'https://phimail.example.com:32541',
2622 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
2625 'phimail_username' => array(
2626 xl('phiMail Username'),
2627 'text', // data type
2629 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
2632 'phimail_password' => array(
2633 xl('phiMail Password'),
2634 'pass', // data type
2636 xl('Contact EMR Direct to subscribe to the phiMail Direct messaging service')
2639 'phimail_notify' => array(
2640 xl('phiMail notification user'),
2641 'text', // data type
2643 xl('This user will receive notification of new incoming Direct messages')
2646 'phimail_interval' => array(
2647 xl('phiMail Message Check Interval (minutes)'),
2650 xl('Interval between message checks (set to zero for manual checks only)')
2653 'phimail_ccd_enable' => array(
2654 xl('phiMail Allow CCD Send'),
2655 'bool', // data type
2657 xl('phiMail Allow CCD Send')
2660 'phimail_ccr_enable' => array(
2661 xl('phiMail Allow CCR Send'),
2662 'bool', // data type
2664 xl('phiMail Allow CCR Send')
2669 'rx_enable_DEA' => array(
2670 xl('Rx Enable DEA #'),
2671 'bool', // data type
2673 xl('Rx Enable DEA #')
2675 'rx_show_DEA' => array(
2676 xl('Rx Show DEA #'),
2677 'bool', // data type
2681 'rx_enable_NPI' => array(
2682 xl('Rx Enable NPI'),
2683 'bool', // data type
2687 'rx_show_NPI' => array(
2689 'bool', // data type
2693 'rx_enable_SLN' => array(
2694 xl('Rx Enable State Lic. #'),
2695 'bool', // data type
2697 xl('Rx Enable State Lic. #')
2699 'rx_show_SLN' => array(
2700 xl('Rx Show State Lic. #'),
2701 'bool', // data type
2703 xl('Rx Show State Lic. #')
2705 'rx_show_drug-drug' => array(
2706 xl('Rx NLM Drug-Drug'),
2707 'bool', // data type
2709 xl('Rx NLM Drug-Drug')
2711 'rx_paper_size' => array(
2712 xl('Rx Paper Size'), // descriptive name
2714 'LETTER' => xl('Letter Paper Size'),
2715 'LEGAL' => xl('Legal Paper Size'),
2716 'FOLIO' => xl('Folio Paper Size'),
2717 'EXECUTIVE' => xl('Executive Paper Size'),
2718 '4A0' => ('4A0' . " " . xl('Paper Size')),
2719 '2A0' => ('2A0' . " " . xl('Paper Size')),
2720 'A0' => ('A0' . " " . xl('Paper Size')),
2721 'A1' => ('A1' . " " . xl('Paper Size')),
2722 'A2' => ('A2' . " " . xl('Paper Size')),
2723 'A3' => ('A3' . " " . xl('Paper Size')),
2724 'A4' => ('A4' . " " . xl('Paper Size')),
2725 'A5' => ('A5' . " " . xl('Paper Size')),
2726 'A6' => ('A6' . " " . xl('Paper Size')),
2727 'A7' => ('A7' . " " . xl('Paper Size')),
2728 'A8' => ('A8' . " " . xl('Paper Size')),
2729 'A9' => ('A9' . " " . xl('Paper Size')),
2730 'A10' => ('A10' . " " . xl('Paper Size')),
2731 'B0' => ('B0' . " " . xl('Paper Size')),
2732 'B1' => ('B1' . " " . xl('Paper Size')),
2733 'B2' => ('B2' . " " . xl('Paper Size')),
2734 'B3' => ('B3' . " " . xl('Paper Size')),
2735 'B4' => ('B4' . " " . xl('Paper Size')),
2736 'B5' => ('B5' . " " . xl('Paper Size')),
2737 'B6' => ('B6' . " " . xl('Paper Size')),
2738 'B7' => ('B7' . " " . xl('Paper Size')),
2739 'B8' => ('B8' . " " . xl('Paper Size')),
2740 'B9' => ('B9' . " " . xl('Paper Size')),
2741 'B10' => ('B10' . " " . xl('Paper Size')),
2742 'C0' => ('C0' . " " . xl('Paper Size')),
2743 'C1' => ('C1' . " " . xl('Paper Size')),
2744 'C2' => ('C2' . " " . xl('Paper Size')),
2745 'C3' => ('C3' . " " . xl('Paper Size')),
2746 'C4' => ('C4' . " " . xl('Paper Size')),
2747 'C5' => ('C5' . " " . xl('Paper Size')),
2748 'C6' => ('C6' . " " . xl('Paper Size')),
2749 'C7' => ('C7' . " " . xl('Paper Size')),
2750 'C8' => ('C8' . " " . xl('Paper Size')),
2751 'C9' => ('C9' . " " . xl('Paper Size')),
2752 'C10' => ('C10' . " " . xl('Paper Size')),
2753 'RA0' => ('RA0' . " " . xl('Paper Size')),
2754 'RA1' => ('RA1' . " " . xl('Paper Size')),
2755 'RA2' => ('RA2' . " " . xl('Paper Size')),
2756 'RA3' => ('RA3' . " " . xl('Paper Size')),
2757 'RA4' => ('RA4' . " " . xl('Paper Size')),
2758 'SRA0' => ('SRA0' . " " . xl('Paper Size')),
2759 'SRA1' => ('SRA1' . " " . xl('Paper Size')),
2760 'SRA2' => ('SRA2' . " " . xl('Paper Size')),
2761 'SRA3' => ('SRA3' . " " . xl('Paper Size')),
2762 'SRA4' => ('SRA4' . " " . xl('Paper Size')),
2764 'LETTER', // default = tree menu
2767 'rx_left_margin' => array(
2768 xl('Rx Left Margin (px)'),
2771 xl('Rx Left Margin (px)')
2773 'rx_right_margin' => array(
2774 xl('Rx Right Margin (px)'),
2777 xl('Rx Right Margin (px)')
2779 'rx_top_margin' => array(
2780 xl('Rx Top Margin (px)'),
2783 xl('Rx Top Margin (px)')
2785 'rx_bottom_margin' => array(
2786 xl('Rx Bottom Margin (px)'),
2789 xl('Rx Bottom Margin (px)')
2794 'pdf_layout' => array(
2797 'P' => xl('Portrait'),
2798 'L' => xl('Landscape')
2801 xl("Choose Layout Direction"),
2803 'pdf_language' => array(
2807 'af' => xl('Afrikaans'),
2809 'sq' => xl('Albanian'),
2810 'am' => xl('Amharic'),
2811 'ar' => xl('Arabic'),
2812 'an' => xl('Aragonese'),
2813 'hy' => xl('Armenian'),
2814 'as' => xl('Assamese'),
2815 'av' => xl('Avaric'),
2816 'ae' => xl('Avestan'),
2817 'ay' => xl('Aymara'),
2818 'az' => xl('Azerbaijani'),
2819 'bm' => xl('Bambara'),
2820 'ba' => xl('Bashkir'),
2821 'eu' => xl('Basque'),
2822 'be' => xl('Belarusian'),
2823 'bn' => xl('Bengali- Bangla'),
2824 'bh' => xl('Bihari'),
2825 'bi' => xl('Bislama'),
2826 'bs' => xl('Bosnian'),
2827 'br' => xl('Breton'),
2828 'bg' => xl('Bulgarian'),
2829 'my' => xl('Burmese'),
2830 'ca' => xl('Catalan-Â Valencian'),
2831 'ch' => xl('Chamorro'),
2832 'ce' => xl('Chechen'),
2833 'ny' => xl('Chichewa- Chewa- Nyanja'),
2834 'zh' => xl('Chinese'),
2835 'cv' => xl('Chuvash'),
2836 'kw' => xl('Cornish'),
2837 'co' => xl('Corsican'),
2839 'hr' => xl('Croatian'),
2840 'cs' => xl('Czech'),
2841 'da' => xl('Danish'),
2842 'dv' => xl('Divehi- Dhivehi- Maldivian-'),
2843 'nl' => xl('Dutch'),
2844 'dz' => xl('Dzongkha'),
2845 'en' => xl('English'),
2846 'eo' => xl('Esperanto'),
2847 'et' => xl('Estonian'),
2849 'fo' => xl('Faroese'),
2850 'fj' => xl('Fijian'),
2851 'fi' => xl('Finnish'),
2852 'fr' => xl('French'),
2853 'ff' => xl('Fula- Fulah- Pulaar- Pular'),
2854 'gl' => xl('Galician'),
2855 'ka' => xl('Georgian'),
2856 'de' => xl('German'),
2857 'el' => xl('Greek, Modern'),
2858 'gn' => xl('Guarani'),
2859 'gu' => xl('Gujarati'),
2860 'ht' => xl('Haitian- Haitian Creole'),
2861 'ha' => xl('Hausa'),
2862 'he' => xl('Hebrew (modern)'),
2863 'hz' => xl('Herero'),
2864 'hi' => xl('Hindi'),
2865 'ho' => xl('Hiri Motu'),
2866 'hu' => xl('Hungarian'),
2867 'ia' => xl('Interlingua'),
2868 'id' => xl('Indonesian'),
2869 'ie' => xl('Interlingue'),
2870 'ga' => xl('Irish'),
2872 'ik' => xl('Inupiaq'),
2874 'is' => xl('Icelandic'),
2875 'it' => xl('Italian'),
2876 'iu' => xl('Inuktitut'),
2877 'ja' => xl('Japanese'),
2878 'jv' => xl('Javanese'),
2879 'kl' => xl('Kalaallisut, Greenlandic'),
2880 'kn' => xl('Kannada'),
2881 'kr' => xl('Kanuri'),
2882 'ks' => xl('Kashmiri'),
2883 'kk' => xl('Kazakh'),
2884 'km' => xl('Khmer'),
2885 'ki' => xl('Kikuyu, Gikuyu'),
2886 'rw' => xl('Kinyarwanda'),
2887 'ky' => xl('Kyrgyz'),
2889 'kg' => xl('Kongo'),
2890 'ko' => xl('Korean'),
2891 'ku' => xl('Kurdish'),
2892 'kj' => xl('Kwanyama, Kuanyama'),
2893 'la' => xl('Latin'),
2894 'lb' => xl('Luxembourgish, Letzeburgesch'),
2895 'lg' => xl('Ganda'),
2896 'li' => xl('Limburgish, Limburgan, Limburger'),
2897 'ln' => xl('Lingala'),
2899 'lt' => xl('Lithuanian'),
2900 'lu' => xl('Luba-Katanga'),
2901 'lv' => xl('Latvian'),
2903 'mk' => xl('Macedonian'),
2904 'mg' => xl('Malagasy'),
2905 'ms' => xl('Malay'),
2906 'ml' => xl('Malayalam'),
2907 'mt' => xl('Maltese'),
2908 'mi' => xl('Maori'),
2909 'mr' => xl('Marathi (Marathi)'),
2910 'mh' => xl('Marshallese'),
2911 'mn' => xl('Mongolian'),
2912 'na' => xl('Nauru'),
2913 'nv' => xl('Navajo, Navaho'),
2914 'nb' => xl('Norwegian Bokmal'),
2915 'nd' => xl('North Ndebele'),
2916 'ne' => xl('Nepali'),
2917 'ng' => xl('Ndonga'),
2918 'nn' => xl('Norwegian Nynorsk'),
2919 'no' => xl('Norwegian'),
2920 'ii' => xl('Nuosu'),
2921 'nr' => xl('South Ndebele'),
2922 'oc' => xl('Occitan'),
2923 'oj' => xl('Ojibwe, Ojibwa'),
2924 'cu' => xl('Old Church Slavonic, Church Slavonic, Old Bulgarian'),
2925 'om' => xl('Oromo'),
2926 'or' => xl('Oriya'),
2927 'os' => xl('Ossetian, Ossetic'),
2928 'pa' => xl('Panjabi, Punjabi'),
2930 'fa' => xl('Persian (Farsi)'),
2931 'pl' => xl('Polish'),
2932 'ps' => xl('Pashto, Pushto'),
2933 'pt' => xl('Portuguese'),
2934 'qu' => xl('Quechua'),
2935 'rm' => xl('Romansh'),
2936 'rn' => xl('Kirundi'),
2937 'ro' => xl('Romanian'),
2938 'ru' => xl('Russian'),
2939 'sa' => xl('Sanskrit (Samskrta)'),
2940 'sc' => xl('Sardinian'),
2941 'sd' => xl('Sindhi'),
2942 'se' => xl('Northern Sami'),
2943 'sm' => xl('Samoan'),
2944 'sg' => xl('Sango'),
2945 'sr' => xl('Serbian'),
2946 'gd' => xl('Scottish Gaelic- Gaelic'),
2947 'sn' => xl('Shona'),
2948 'si' => xl('Sinhala, Sinhalese'),
2949 'sk' => xl('Slovak'),
2950 'sl' => xl('Slovene'),
2951 'so' => xl('Somali'),
2952 'st' => xl('Southern Sotho'),
2953 'es' => xl('Spanish- Castilian'),
2954 'su' => xl('Sundanese'),
2955 'sw' => xl('Swahili'),
2956 'ss' => xl('Swati'),
2957 'sv' => xl('Swedish'),
2958 'ta' => xl('Tamil'),
2959 'te' => xl('Telugu'),
2960 'tg' => xl('Tajik'),
2962 'ti' => xl('Tigrinya'),
2963 'bo' => xl('Tibetan Standard, Tibetan, Central'),
2964 'tk' => xl('Turkmen'),
2965 'tl' => xl('Tagalog'),
2966 'tn' => xl('Tswana'),
2967 'to' => xl('Tonga (Tonga Islands)'),
2968 'tr' => xl('Turkish'),
2969 'ts' => xl('Tsonga'),
2970 'tt' => xl('Tatar'),
2972 'ty' => xl('Tahitian'),
2973 'ug' => xl('Uyghur, Uighur'),
2974 'uk' => xl('Ukrainian'),
2976 'uz' => xl('Uzbek'),
2977 've' => xl('Venda'),
2978 'vi' => xl('Vietnamese'),
2979 'vo' => xl('Volapuk'),
2980 'wa' => xl('Walloon'),
2981 'cy' => xl('Welsh'),
2982 'wo' => xl('Wolof'),
2983 'fy' => xl('Western Frisian'),
2984 'xh' => xl('Xhosa'),
2985 'yi' => xl('Yiddish'),
2986 'yo' => xl('Yoruba'),
2987 'za' => xl('Zhuang, Chuang'),
2990 'en', // default English
2991 xl('Choose PDF languange Preference'),
2993 'pdf_size' => array(
2994 xl('Paper Size'), // Descriptive Name
2996 'LETTER' => xl('Letter Paper Size'),
2997 'LEGAL' => xl('Legal Paper Size'),
2998 'FOLIO' => xl('Folio Paper Size'),
2999 'EXECUTIVE' => xl('Executive Paper Size'),
3000 '4A0' => ('4A0' . " " . xl('Paper Size')),
3001 '2A0' => ('2A0' . " " . xl('Paper Size')),
3002 'A0' => ('A0' . " " . xl('Paper Size')),
3003 'A1' => ('A1' . " " . xl('Paper Size')),
3004 'A2' => ('A2' . " " . xl('Paper Size')),
3005 'A3' => ('A3' . " " . xl('Paper Size')),
3006 'A4' => ('A4' . " " . xl('Paper Size')),
3007 'A5' => ('A5' . " " . xl('Paper Size')),
3008 'A6' => ('A6' . " " . xl('Paper Size')),
3009 'A7' => ('A7' . " " . xl('Paper Size')),
3010 'A8' => ('A8' . " " . xl('Paper Size')),
3011 'A9' => ('A9' . " " . xl('Paper Size')),
3012 'A10' => ('A10' . " " . xl('Paper Size')),
3013 'B0' => ('B0' . " " . xl('Paper Size')),
3014 'B1' => ('B1' . " " . xl('Paper Size')),
3015 'B2' => ('B2' . " " . xl('Paper Size')),
3016 'B3' => ('B3' . " " . xl('Paper Size')),
3017 'B4' => ('B4' . " " . xl('Paper Size')),
3018 'B5' => ('B5' . " " . xl('Paper Size')),
3019 'B6' => ('B6' . " " . xl('Paper Size')),
3020 'B7' => ('B7' . " " . xl('Paper Size')),
3021 'B8' => ('B8' . " " . xl('Paper Size')),
3022 'B9' => ('B9' . " " . xl('Paper Size')),
3023 'B10' => ('B10' . " " . xl('Paper Size')),
3024 'C0' => ('C0' . " " . xl('Paper Size')),
3025 'C1' => ('C1' . " " . xl('Paper Size')),
3026 'C2' => ('C2' . " " . xl('Paper Size')),
3027 'C3' => ('C3' . " " . xl('Paper Size')),
3028 'C4' => ('C4' . " " . xl('Paper Size')),
3029 'C5' => ('C5' . " " . xl('Paper Size')),
3030 'C6' => ('C6' . " " . xl('Paper Size')),
3031 'C7' => ('C7' . " " . xl('Paper Size')),
3032 'C8' => ('C8' . " " . xl('Paper Size')),
3033 'C9' => ('C9' . " " . xl('Paper Size')),
3034 'C10' => ('C10' . " " . xl('Paper Size')),
3035 'RA0' => ('RA0' . " " . xl('Paper Size')),
3036 'RA1' => ('RA1' . " " . xl('Paper Size')),
3037 'RA2' => ('RA2' . " " . xl('Paper Size')),
3038 'RA3' => ('RA3' . " " . xl('Paper Size')),
3039 'RA4' => ('RA4' . " " . xl('Paper Size')),
3040 'SRA0' => ('SRA0' . " " . xl('Paper Size')),
3041 'SRA1' => ('SRA1' . " " . xl('Paper Size')),
3042 'SRA2' => ('SRA2' . " " . xl('Paper Size')),
3043 'SRA3' => ('SRA3' . " " . xl('Paper Size')),
3044 'SRA4' => ('SRA4' . " " . xl('Paper Size')),
3047 xl('Choose Paper Size')
3049 'pdf_left_margin' => array(
3050 xl('Left Margin (mm)'),
3053 xl('Left Margin (mm)')
3055 'pdf_right_margin' => array(
3056 xl('Right Margin (mm)'),
3059 xl('Right Margin (mm)')
3061 'pdf_top_margin' => array(
3062 xl('Top Margin (mm)'),
3065 xl('Top Margin (mm)')
3067 'pdf_bottom_margin' => array(
3068 xl('Bottom Margin (px)'),
3071 xl('Bottom Margin (px)')
3073 'pdf_output' => array(
3076 'D' => xl('Download'),
3080 xl("Choose Download or Display Inline"),
3083 'chart_label_type' => array(
3084 xl('Patient Label Type'),
3092 xl('Avery Label type for printing patient labels from popups in left nav screen'),
3095 'barcode_label_type' => array(
3096 xl('Barcode Label Type'),
3110 '12' => 'datamatrix'
3112 '9', // default = None
3113 xl('Barcode type for printing barcode labels from popups in left nav screen.')
3116 'addr_label_type' => array(
3117 xl('Print Patient Address Label'),
3118 'bool', // data type
3119 '1', // default = false
3120 xl('Select to print patient address labels from popups in left nav screen.')
3123 'env_x_width' => array(
3124 xl('Envelope Width in mm'),
3127 xl('In Portrait mode, determines the width of the envelope along the x-axis in mm')
3130 'env_y_height' => array(
3131 xl('Envelope Height in mm'),
3134 xl('In Portrait mode, determines the height of the envelope along the y-axis in mm')
3137 'env_font_size' => array(
3138 xl('Font Size in Pt'),
3141 xl('Sets the font of the address text on the envelope in mm')
3144 'env_x_dist' => array(
3145 xl('Envelope x-axis starting pt'),
3148 xl('Distance from the \'top\' of the envelope in mm')
3151 'env_y_dist' => array(
3152 xl('Envelope y-axis starting pt'),
3155 xl(' Distance from the right most edge of the envelope in portrait position in mm')