@@ -21,6 +21,22 @@ const notifications: Record<string, { title: () => string, content: (args: any)
21
21
title : ( ) => $gettext ( 'Restart Remote Nginx Success' ) ,
22
22
content : ( args : any ) => $gettext ( 'Restart Nginx on %{node} successfully' , args ) ,
23
23
} ,
24
+ 'Auto Backup Configuration Error' : {
25
+ title : ( ) => $gettext ( 'Auto Backup Configuration Error' ) ,
26
+ content : ( args : any ) => $gettext ( 'Storage configuration validation failed for backup task %{backup_name}, error: %{error}' , args ) ,
27
+ } ,
28
+ 'Auto Backup Failed' : {
29
+ title : ( ) => $gettext ( 'Auto Backup Failed' ) ,
30
+ content : ( args : any ) => $gettext ( 'Backup task %{backup_name} failed to execute, error: %{error}' , args ) ,
31
+ } ,
32
+ 'Auto Backup Storage Failed' : {
33
+ title : ( ) => $gettext ( 'Auto Backup Storage Failed' ) ,
34
+ content : ( args : any ) => $gettext ( 'Backup task %{backup_name} failed during storage upload, error: %{error}' , args ) ,
35
+ } ,
36
+ 'Auto Backup Completed' : {
37
+ title : ( ) => $gettext ( 'Auto Backup Completed' ) ,
38
+ content : ( args : any ) => $gettext ( 'Backup task %{backup_name} completed successfully, file: %{file_path}' , args ) ,
39
+ } ,
24
40
'Certificate Expired' : {
25
41
title : ( ) => $gettext ( 'Certificate Expired' ) ,
26
42
content : ( args : any ) => $gettext ( 'Certificate %{name} has expired' , args ) ,
0 commit comments