mirror of
https://github.com/drakkan/sftpgo.git
synced 2024-11-21 15:10:23 +00:00
events: add copy action
Signed-off-by: Nicola Murino <nicola.murino@gmail.com>
This commit is contained in:
parent
fc4527354b
commit
3b68d0343a
3 changed files with 5 additions and 0 deletions
|
@ -897,6 +897,7 @@
|
|||
"rmdir": "Remove dir",
|
||||
"rename": "Rename",
|
||||
"delete": "Removal",
|
||||
"copy": "Copy",
|
||||
"first_upload": "First upload",
|
||||
"first_download": "First download",
|
||||
"ssh_cmd": "SSH command",
|
||||
|
|
|
@ -897,6 +897,7 @@
|
|||
"rmdir": "Rimozione cartella",
|
||||
"rename": "Rinomina",
|
||||
"delete": "Rimozione",
|
||||
"copy": "Copia",
|
||||
"first_upload": "Primo caricamento",
|
||||
"first_download": "Primo download",
|
||||
"ssh_cmd": "Comando SSH",
|
||||
|
|
|
@ -369,6 +369,7 @@ explicit grant from the SFTPGo Team (support@sftpgo.com).
|
|||
idActions.append(new Option($.t('events.mkdir'),"mkdir",false,false));
|
||||
idActions.append(new Option($.t('events.rmdir'),"rmdir",false,false));
|
||||
idActions.append(new Option($.t('events.rename'),"rename",false,false));
|
||||
idActions.append(new Option($.t('events.copy'),"copy",false,false));
|
||||
idActions.append(new Option($.t('events.delete'),"delete",false,false));
|
||||
idActions.append(new Option($.t('events.first_upload'),"first-upload",false,false));
|
||||
idActions.append(new Option($.t('events.first_download'),"first-download",false,false));
|
||||
|
@ -507,6 +508,8 @@ explicit grant from the SFTPGo Team (support@sftpgo.com).
|
|||
return $.t('events.first_download');
|
||||
case "ssh_cmd":
|
||||
return $.t('events.ssh_cmd');
|
||||
case "copy":
|
||||
return $.t('events.copy');
|
||||
default:
|
||||
console.log(`unknown fs action "${data}"`);
|
||||
return "";
|
||||
|
|
Loading…
Reference in a new issue