source: resources/lang/vendor/backup/en/notifications.php

Last change on this file was c5e383e, checked in by beratkjufliju <kufliju@…>, 3 years ago

added db and storage backup

  • Property mode set to 100644
File size: 2.3 KB
Line 
1<?php
2
3return [
4 'exception_message' => 'Exception message: :message',
5 'exception_trace' => 'Exception trace: :trace',
6 'exception_message_title' => 'Exception message',
7 'exception_trace_title' => 'Exception trace',
8
9 'backup_failed_subject' => 'Failed backup of :application_name',
10 'backup_failed_body' => 'Important: An error occurred while backing up :application_name',
11
12 'backup_successful_subject' => 'Successful new backup of :application_name',
13 'backup_successful_subject_title' => 'Successful new backup!',
14 'backup_successful_body' => 'Great news, a new backup of :application_name was successfully created on the disk named :disk_name.',
15
16 'cleanup_failed_subject' => 'Cleaning up the backups of :application_name failed.',
17 'cleanup_failed_body' => 'An error occurred while cleaning up the backups of :application_name',
18
19 'cleanup_successful_subject' => 'Clean up of :application_name backups successful',
20 'cleanup_successful_subject_title' => 'Clean up of backups successful!',
21 'cleanup_successful_body' => 'The clean up of the :application_name backups on the disk named :disk_name was successful.',
22
23 'healthy_backup_found_subject' => 'The backups for :application_name on disk :disk_name are healthy',
24 'healthy_backup_found_subject_title' => 'The backups for :application_name are healthy',
25 'healthy_backup_found_body' => 'The backups for :application_name are considered healthy. Good job!',
26
27 'unhealthy_backup_found_subject' => 'Important: The backups for :application_name are unhealthy',
28 'unhealthy_backup_found_subject_title' => 'Important: The backups for :application_name are unhealthy. :problem',
29 'unhealthy_backup_found_body' => 'The backups for :application_name on disk :disk_name are unhealthy.',
30 'unhealthy_backup_found_not_reachable' => 'The backup destination cannot be reached. :error',
31 'unhealthy_backup_found_empty' => 'There are no backups of this application at all.',
32 'unhealthy_backup_found_old' => 'The latest backup made on :date is considered too old.',
33 'unhealthy_backup_found_unknown' => 'Sorry, an exact reason cannot be determined.',
34 '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.',
35];
Note: See TracBrowser for help on using the repository browser.