55 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			55 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | ||
| 
 | ||
| return [
 | ||
| 
 | ||
|     'whoops'              => 'Whoops!',
 | ||
|     'hello'               => 'Hello!',
 | ||
|     'salutation'          => 'Regards,<br> :company_name',
 | ||
|     'subcopy'             => 'If you’re having trouble clicking the ":text" button, copy and paste the URL below into your web browser: [:url](:url)',
 | ||
| 
 | ||
|     'update' => [
 | ||
| 
 | ||
|         'mail' => [
 | ||
| 
 | ||
|             'subject' => '⚠️ Update failed on :domain',
 | ||
|             'message' => 'The update of :alias from :current_version to :new_version failed in <strong>:step</strong> step with the following message: :error_message',
 | ||
| 
 | ||
|         ],
 | ||
| 
 | ||
|         'slack' => [
 | ||
| 
 | ||
|             'message' => 'Update failed on :domain',
 | ||
| 
 | ||
|         ],
 | ||
| 
 | ||
|     ],
 | ||
| 
 | ||
|     'import' => [
 | ||
| 
 | ||
|         'completed' => [
 | ||
|             'subject'           => 'Import completed',
 | ||
|             'description'       => 'The import has been completed and the records are available in your panel.',
 | ||
|         ],
 | ||
| 
 | ||
|         'failed' => [
 | ||
|             'subject'           => 'Import failed',
 | ||
|             'description'       => 'Not able to import the file due to the following issues:',
 | ||
|         ],
 | ||
|     ],
 | ||
| 
 | ||
|     'export' => [
 | ||
| 
 | ||
|         'completed' => [
 | ||
|             'subject'           => 'Export is ready',
 | ||
|             'description'       => 'The export file is ready to download from the following link:',
 | ||
|         ],
 | ||
| 
 | ||
|         'failed' => [
 | ||
|             'subject'           => 'Export failed',
 | ||
|             'description'       => 'Not able to create the export file due to the following issue:',
 | ||
|         ],
 | ||
| 
 | ||
|     ],
 | ||
| 
 | ||
| ];
 |