@@ -27,3 +27,24 @@ export const MEGA_TO_DIRECT_ROUTE = `/transfers/${MEGA_TO_DIRECT_QUEUE}`;
27
27
export const TORRENTS_TO_GDRIVE_ROUTE = `/transfers/${ TORRENTS_TO_GDRIVE_QUEUE } ` ;
28
28
export const TORRENTS_TO_MEGA_ROUTE = `/transfers/${ TORRENTS_TO_MEGA_QUEUE } ` ;
29
29
export const TORRENTS_TO_DIRECT_ROUTE = `/transfers/${ TORRENTS_TO_DIRECT_QUEUE } ` ;
30
+
31
+ export const confirmationMessages = {
32
+ [ MEGA_TO_GDRIVE_QUEUE ] :
33
+ "You are going to remove the transferred file (but this will not remove the file from your Google Drive storage)." ,
34
+ [ GDRIVE_TO_MEGA_QUEUE ] :
35
+ "You are going to remove the transferred file (and the file will be removed from Mega.nz cloud storage)." ,
36
+ [ DIRECT_TO_GDRIVE_QUEUE ] :
37
+ "You are going to remove the transferred file (but this will not remove the file from your Google Drive storage)." ,
38
+ [ DIRECT_TO_MEGA_QUEUE ] :
39
+ "You are going to remove the transferred file (and the file will be removed from Mega.nz cloud storage)." ,
40
+ [ GDRIVE_TO_DIRECT_QUEUE ] :
41
+ "You are going to remove the transferred file (and the direct download link will stop working)." ,
42
+ [ MEGA_TO_DIRECT_QUEUE ] :
43
+ "You are going to remove the transferred file (and the direct download link will stop working)." ,
44
+ [ TORRENTS_TO_GDRIVE_QUEUE ] :
45
+ "You are going to remove the transferred file (but this will not remove the file from your Google Drive storage)." ,
46
+ [ TORRENTS_TO_MEGA_QUEUE ] :
47
+ "You are going to remove the transferred file (and the file will be removed from Mega.nz cloud storage)." ,
48
+ [ TORRENTS_TO_DIRECT_QUEUE ] :
49
+ "You are going to remove the transferred file (and the direct download link will stop working)." ,
50
+ } ;
0 commit comments