You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

getGloablJs.view.php 2.8KB

123456789101112131415161718192021222324252627282930
  1. <?php
  2. header('Content-Type: application/javascript');
  3. ?>
  4. var glbSessionExpired = '<?php echo addslashes(_('Session expired or permission denied. Please try to log in again.')); ?>';
  5. var glbYearsLabel = '<?php echo _('Years'); ?>';
  6. var glbMonthsLabel = '<?php echo _('Months'); ?>';
  7. var glbAppTitle = '<?php echo $this->config['settings']['app-title']; ?>';
  8. var glbAppOffline = '<?php echo _(addslashes('The Application is Offline.')); ?>';
  9. var glbUploadBusy = '<?php echo _(addslashes('The Tranfer Manager is currently attempting to resume the connection. Do you want to cancel this operation?')); ?>';
  10. var gblDeleteAttachMsg = '<?php echo _(addslashes('Do you want to delete the following file?')); ?>';
  11. var glbLogoutMsg = '<?php echo _(addslashes('This operation will log out, do you want to proceed?')); ?>';
  12. var glbCancelButton = '<?php echo _(addslashes('Cancel')); ?>';
  13. var glbDeleteButton = '<?php echo _(addslashes('Delete')); ?>';
  14. var glbSubmitButton = '<?php echo _(addslashes('Save')); ?>';
  15. var glbLoginButton = '<?php echo _(addslashes('Login')); ?>';
  16. var glbNothingFound = '<?php echo _(addslashes('Unable to find')); ?>';
  17. var glbGenericError = '<?php echo _(addslashes('Generic connection error. Please try to refresh this page in a few minutes.')); ?>';
  18. var glbFileUploadEmpty = '<?php echo _(addslashes('Please provide at least one file.')); ?>';
  19. var glbNoPostIdMag = '<?php echo _(addslashes('You can upload new files only from New/Edit Request page.')); ?>'; //Deprecated
  20. var glbNoPostCodeMsg = '<?php echo _(addslashes('You can choose new files only in New/Edit Request page.')); ?>';
  21. var glbDeleteRequest = '<?php echo _(addslashes('Do you want to delete this request?')); ?>';
  22. var glbRunProcess = '<?php echo _(addslashes('Do you want to open the external application?')); ?>';
  23. var glbDeleteSurveyMsg = '<?php echo _(addslashes('Do you want to delete the survey <b>#$survey_id$</b> sent to <b>$survey_recipient$?')); ?>';
  24. var glbSurveyUploadExceeds = '<?php echo _(addslashes('The file <b>$file_name$</b> exceeds the maximum size allowed (5 MB).')); ?>';
  25. var glbGenericError = '<?php echo _(addslashes('Unknown error, please try again in a few moments')); ?>';
  26. var glbSurveyPrivacyMsg = '<?php echo _('Before sending the questionnaire it is necessary to confirm that you have received and accepted the information on the processing of personal data.'); ?>';
  27. var glbSendPDFBeforeMsg = '<?php echo _(addslashes('Before sending the response to the patient, save the new text entered or any attachments added.')); ?>';
  28. var glbSendPDFAttachMsg = '<?php echo _(addslashes('If necessary, select one of the following files to attach to the reply email')); ?>';
  29. var glbWSEndpoint = '<?php echo $this->config['settings']['ws']['protocol'].$this->config['settings']['ws']['host'].':'.$this->config['settings']['ws']['port']; ?>';