@@ -21,6 +21,22 @@ const notifications: Record<string, { title: () => string, content: (args: any)
2121 title : ( ) => $gettext ( 'Restart Remote Nginx Success' ) ,
2222 content : ( args : any ) => $gettext ( 'Restart Nginx on %{node} successfully' , args ) ,
2323 } ,
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+ } ,
2440 'Certificate Expired' : {
2541 title : ( ) => $gettext ( 'Certificate Expired' ) ,
2642 content : ( args : any ) => $gettext ( 'Certificate %{name} has expired' , args ) ,
0 commit comments