notifications.php 2.3 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. return [
  3. 'exception_message' => 'Exception message: :message',
  4. 'exception_trace' => 'Exception trace: :trace',
  5. 'exception_message_title' => 'Exception message',
  6. 'exception_trace_title' => 'Exception trace',
  7. 'backup_failed_subject' => 'Failed back up of :application_name',
  8. 'backup_failed_body' => 'Important: An error occurred while backing up :application_name',
  9. 'backup_successful_subject' => 'Successful new backup of :application_name',
  10. 'backup_successful_subject_title' => 'Successful new backup!',
  11. 'backup_successful_body' => 'Great news, a new backup of :application_name was successfully created on the disk named :disk_name.',
  12. 'cleanup_failed_subject' => 'Cleaning up the backups of :application_name failed.',
  13. 'cleanup_failed_body' => 'An error occurred while cleaning up the backups of :application_name',
  14. 'cleanup_successful_subject' => 'Clean up of :application_name backups successful',
  15. 'cleanup_successful_subject_title' => 'Clean up of backups successful!',
  16. 'cleanup_successful_body' => 'The clean up of the :application_name backups on the disk named :disk_name was successful.',
  17. 'healthy_backup_found_subject' => 'The backups for :application_name on disk :disk_name are healthy',
  18. 'healthy_backup_found_subject_title' => 'The backups for :application_name are healthy',
  19. 'healthy_backup_found_body' => 'The backups for :application_name are considered healthy. Good job!',
  20. 'unhealthy_backup_found_subject' => 'Important: The backups for :application_name are unhealthy',
  21. 'unhealthy_backup_found_subject_title' => 'Important: The backups for :application_name are unhealthy. :problem',
  22. 'unhealthy_backup_found_body' => 'The backups for :application_name on disk :disk_name are unhealthy.',
  23. 'unhealthy_backup_found_not_reachable' => 'The backup destination cannot be reached. :error',
  24. 'unhealthy_backup_found_empty' => 'There are no backups of this application at all.',
  25. 'unhealthy_backup_found_old' => 'The latest backup made on :date is considered too old.',
  26. 'unhealthy_backup_found_unknown' => 'Sorry, an exact reason cannot be determined.',
  27. 'unhealthy_backup_found_full' => 'The backups are using too much storage. Current usage is :disk_usage which is higher than the allowed limit of :disk_limit.',
  28. ];