Skip to content

Commit

Permalink
Cleaning up some widget layouts apache#4466
Browse files Browse the repository at this point in the history
Add SWT.BORDER to Rest connection metadata editor
Fix database join SQL label layout
Fix transfo Redshiftbulkloader schema browse button layout
Fix transfo Orabulkloader folder tab look for dark mode
Remove SWT.BORDER action Cassandra Execute CQL
  • Loading branch information
nadment committed Oct 25, 2024
1 parent 4a7d8f9 commit 5bab9e5
Show file tree
Hide file tree
Showing 50 changed files with 274 additions and 272 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ public IAction open() {

PropsUi.setLook(wScaleTime);
FormData fdScaleTime = new FormData();
fdScaleTime.left = new FormAttachment(middle, margin);
fdScaleTime.left = new FormAttachment(middle, 0);
fdScaleTime.top = new FormAttachment(wMaximumTimeout, margin);
fdScaleTime.right = new FormAttachment(100, 0);
wScaleTime.setLayoutData(fdScaleTime);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ ActionFilesExist.Fields.Column=Specify here file to delete
ActionFilesExist.Fields.Label=Files/Folders
ActionFilesExist.File_Does_Not_Exist=File [{0}] does not exist\!
ActionFilesExist.File_Exists=File [{0}] exists.
ActionFilesExist.Filename.Label=File/folder name:
ActionFilesExist.Filename.Label=File/folder name
ActionFilesExist.FilenameAdd.Button=&Add
ActionFilesExist.FilenameDelete.Button=&Delete
ActionFilesExist.FilenameDelete.Tooltip=Remove selected files from the grid
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,7 @@ public IAction open() {
fdName.left = new FormAttachment(0, 0);
fdName.right = new FormAttachment(100, 0);
wName.setLayoutData(fdName);
PropsUi.setLook(wName);

// The buttons at the bottom...
//
Expand Down Expand Up @@ -232,15 +233,15 @@ public IAction open() {
FormData fdlProtocol = new FormData();
fdlProtocol.left = new FormAttachment(0, 0);
fdlProtocol.top = new FormAttachment(wName, margin);
fdlProtocol.right = new FormAttachment(middle, 0);
fdlProtocol.right = new FormAttachment(middle, -margin);
wlProtocol.setLayoutData(fdlProtocol);
wProtocol = new Combo(wServerSettings, SWT.SINGLE | SWT.LEFT | SWT.BORDER);
wProtocol.setToolTipText(BaseMessages.getString(PKG, "ActionFtpDelete.Protocol.Tooltip"));
wProtocol.add(ActionFtpDelete.PROTOCOL_FTP);
wProtocol.add(ActionFtpDelete.PROTOCOL_SFTP);
PropsUi.setLook(wProtocol);
FormData fdProtocol = new FormData();
fdProtocol.left = new FormAttachment(middle, margin);
fdProtocol.left = new FormAttachment(middle, 0);
fdProtocol.top = new FormAttachment(wName, margin);
fdProtocol.right = new FormAttachment(100, 0);
wProtocol.setLayoutData(fdProtocol);
Expand Down Expand Up @@ -332,13 +333,13 @@ public void widgetSelected(SelectionEvent e) {
FormData fdlUseProxy = new FormData();
fdlUseProxy.left = new FormAttachment(0, 0);
fdlUseProxy.top = new FormAttachment(wPassword, margin);
fdlUseProxy.right = new FormAttachment(middle, 0);
fdlUseProxy.right = new FormAttachment(middle, -margin);
wlUseProxy.setLayoutData(fdlUseProxy);
wUseProxy = new Button(wServerSettings, SWT.CHECK);
PropsUi.setLook(wUseProxy);
wUseProxy.setToolTipText(BaseMessages.getString(PKG, "ActionFtpDelete.useProxy.Tooltip"));
FormData fdUseProxy = new FormData();
fdUseProxy.left = new FormAttachment(middle, margin);
fdUseProxy.left = new FormAttachment(middle, 0);
fdUseProxy.top = new FormAttachment(wlUseProxy, 0, SWT.CENTER);
fdUseProxy.right = new FormAttachment(100, 0);
wUseProxy.setLayoutData(fdUseProxy);
Expand Down Expand Up @@ -430,14 +431,14 @@ public void widgetSelected(SelectionEvent e) {
FormData fdlusePublicKey = new FormData();
fdlusePublicKey.left = new FormAttachment(0, 0);
fdlusePublicKey.top = new FormAttachment(wProxyPassword, margin);
fdlusePublicKey.right = new FormAttachment(middle, 0);
fdlusePublicKey.right = new FormAttachment(middle, -margin);
wlUsePublicKey.setLayoutData(fdlusePublicKey);
wUsePublicKey = new Button(wServerSettings, SWT.CHECK);
wUsePublicKey.setToolTipText(
BaseMessages.getString(PKG, "ActionFtpDelete.usePublicKeyFiles.Tooltip"));
PropsUi.setLook(wUsePublicKey);
FormData fdusePublicKey = new FormData();
fdusePublicKey.left = new FormAttachment(middle, margin);
fdusePublicKey.left = new FormAttachment(middle, 0);
fdusePublicKey.top = new FormAttachment(wlUsePublicKey, 0, SWT.CENTER);
fdusePublicKey.right = new FormAttachment(100, 0);
wUsePublicKey.setLayoutData(fdusePublicKey);
Expand Down Expand Up @@ -473,7 +474,7 @@ public void widgetSelected(SelectionEvent e) {
PropsUi.setLook(wKeyFilename);
wKeyFilename.addModifyListener(lsMod);
FormData fdKeyFilename = new FormData();
fdKeyFilename.left = new FormAttachment(middle, margin);
fdKeyFilename.left = new FormAttachment(middle, 0);
fdKeyFilename.top = new FormAttachment(wlKeyFilename, 0, SWT.CENTER);
fdKeyFilename.right = new FormAttachment(wbKeyFilename, -margin);
wKeyFilename.setLayoutData(fdKeyFilename);
Expand Down Expand Up @@ -594,13 +595,13 @@ public void widgetSelected(SelectionEvent e) {
FormData fdlActive = new FormData();
fdlActive.left = new FormAttachment(0, 0);
fdlActive.top = new FormAttachment(wTimeout, margin);
fdlActive.right = new FormAttachment(middle, 0);
fdlActive.right = new FormAttachment(middle, -margin);
wlActive.setLayoutData(fdlActive);
wActive = new Button(wAdvancedSettings, SWT.CHECK);
wActive.setToolTipText(BaseMessages.getString(PKG, "ActionFtpDelete.ActiveConns.Tooltip"));
PropsUi.setLook(wActive);
FormData fdActive = new FormData();
fdActive.left = new FormAttachment(middle, margin);
fdActive.left = new FormAttachment(middle, 0);
fdActive.top = new FormAttachment(wlActive, 0, SWT.CENTER);
fdActive.right = new FormAttachment(100, 0);
wActive.setLayoutData(fdActive);
Expand Down Expand Up @@ -635,13 +636,13 @@ public void widgetSelected(SelectionEvent e) {
FormData fdlGetPrevious = new FormData();
fdlGetPrevious.left = new FormAttachment(0, 0);
fdlGetPrevious.top = new FormAttachment(wAdvancedSettings, margin);
fdlGetPrevious.right = new FormAttachment(middle, 0);
fdlGetPrevious.right = new FormAttachment(middle, -margin);
wlGetPrevious.setLayoutData(fdlGetPrevious);
wGetPrevious = new Button(wRemoteSettings, SWT.CHECK);
PropsUi.setLook(wGetPrevious);
wGetPrevious.setToolTipText(BaseMessages.getString(PKG, "ActionFtpDelete.getPrevious.Tooltip"));
FormData fdGetPrevious = new FormData();
fdGetPrevious.left = new FormAttachment(middle, margin);
fdGetPrevious.left = new FormAttachment(middle, 0);
fdGetPrevious.top = new FormAttachment(wlGetPrevious, 0, SWT.CENTER);
fdGetPrevious.right = new FormAttachment(100, 0);
wGetPrevious.setLayoutData(fdGetPrevious);
Expand All @@ -661,7 +662,7 @@ public void widgetSelected(SelectionEvent e) {
FormData fdlFtpDirectory = new FormData();
fdlFtpDirectory.left = new FormAttachment(0, 0);
fdlFtpDirectory.top = new FormAttachment(wlGetPrevious, 2 * margin);
fdlFtpDirectory.right = new FormAttachment(middle, 0);
fdlFtpDirectory.right = new FormAttachment(middle, -margin);
wlFtpDirectory.setLayoutData(fdlFtpDirectory);

// Test remote folder button ...
Expand All @@ -684,7 +685,7 @@ public void widgetSelected(SelectionEvent e) {
PropsUi.setLook(wFtpDirectory);
wFtpDirectory.addModifyListener(lsMod);
FormData fdFtpDirectory = new FormData();
fdFtpDirectory.left = new FormAttachment(middle, margin);
fdFtpDirectory.left = new FormAttachment(middle, 0);
fdFtpDirectory.top = new FormAttachment(wGetPrevious, margin);
fdFtpDirectory.right = new FormAttachment(wbTestChangeFolderExists, -margin);
wFtpDirectory.setLayoutData(fdFtpDirectory);
Expand Down Expand Up @@ -784,7 +785,7 @@ public void widgetSelected(SelectionEvent e) {
FormData fdNrErrorsLessThan = new FormData();
fdNrErrorsLessThan.left = new FormAttachment(middle, 0);
fdNrErrorsLessThan.top = new FormAttachment(wSuccessCondition, margin);
fdNrErrorsLessThan.right = new FormAttachment(100, -margin);
fdNrErrorsLessThan.right = new FormAttachment(100, 0);
wNrErrorsLessThan.setLayoutData(fdNrErrorsLessThan);

FormData fdSuccessOn = new FormData();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
#

ActionFtp.UnexpectedError=Unexpected error \:{0}
ActionFtpDelete.ActiveConns.Label=Use active FTP connection\:
ActionFtpDelete.ActiveConns.Label=Use active FTP connection
ActionFtpDelete.ActiveConns.Tooltip=Activate to use active FTP connection
ActionFtpDelete.AdvancedSettings.Group.Label=Advanced
ActionFTPDelete.AnalysingFile=Analysing remote file [{0}] ...
Expand All @@ -38,7 +38,7 @@ ActionFtpDelete.FolderExists.OK=Folder {0} exists in the remote host.
ActionFtpDelete.FolderExists.Title.Bad=Can not find folder
ActionFtpDelete.FolderExists.Title.Ok=Folder exists
ActionFTPDelete.FoundNFiles=Found {0} files in the remote ftp directory
ActionFtpDelete.getPrevious.Label=Copy previous results to args?
ActionFtpDelete.getPrevious.Label=Copy previous results to args
ActionFtpDelete.getPrevious.Tooltip=Copy previous results to args
ActionFtpDelete.KeyFilename.Label=Key file
ActionFtpDelete.KeyFilename.Tooltip=Key file.
Expand Down Expand Up @@ -75,7 +75,7 @@ ActionFtpDelete.ServerSettings.Group.Label=Server
ActionFtpDelete.SocksProxy.Group.Label=Proxy
ActionFtpDelete.SocksProxyHost.Label=Host
ActionFtpDelete.SocksProxyHost.Tooltip=The host name or IP address of the socks proxy host
ActionFtpDelete.SocksProxyPassword.Label=Password:
ActionFtpDelete.SocksProxyPassword.Label=Password
ActionFtpDelete.SocksProxyPassword.Tooltip=The password for the Socks 5 proxy
ActionFtpDelete.SocksProxyPort.Label=Port
ActionFtpDelete.SocksProxyPort.Tooltip=Socks proxy port
Expand All @@ -94,7 +94,7 @@ ActionFtpDelete.Tab.Socks.Label=Socks Proxy
ActionFtpDelete.TestConnection.Label=Test connection
ActionFtpDelete.TestConnection.Tooltip=Test connection
ActionFtpDelete.TestFolderExists.Label=Check folder
ActionFtpDelete.Timeout.Label=Timeout\:
ActionFtpDelete.Timeout.Label=Timeout
ActionFtpDelete.Timeout.Tooltip=The timeout when transferring in seconds (0 for no timeout)
ActionFtpDelete.Title=FTP delete
ActionFtpDelete.useProxy.Label=Use proxy
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -499,7 +499,7 @@ public IAction open() {
wUseAuth = new Button(wAuthentificationGroup, SWT.CHECK);
PropsUi.setLook(wUseAuth);
FormData fdUseAuth = new FormData();
fdUseAuth.left = new FormAttachment(middle, margin);
fdUseAuth.left = new FormAttachment(middle, 0);
fdUseAuth.top = new FormAttachment(wlUseAuth, 0, SWT.CENTER);
fdUseAuth.right = new FormAttachment(100, 0);
wUseAuth.setLayoutData(fdUseAuth);
Expand All @@ -525,7 +525,7 @@ public void widgetSelected(SelectionEvent e) {
PropsUi.setLook(wUseXOAUTH2);
FormData fdUseXOAUTH2 = new FormData();
wUseXOAUTH2.setToolTipText(BaseMessages.getString(PKG, "ActionMail.UseXOAUTH2Mails.Tooltip"));
fdUseXOAUTH2.left = new FormAttachment(middle, margin);
fdUseXOAUTH2.left = new FormAttachment(middle, 0);
fdUseXOAUTH2.top = new FormAttachment(wlUseXOAUTH2, 0, SWT.CENTER);
fdUseXOAUTH2.right = new FormAttachment(100, 0);
wUseXOAUTH2.setLayoutData(fdUseXOAUTH2);
Expand Down Expand Up @@ -571,7 +571,7 @@ public void widgetSelected(SelectionEvent e) {
wUseSecAuth = new Button(wAuthentificationGroup, SWT.CHECK);
PropsUi.setLook(wUseSecAuth);
FormData fdUseSecAuth = new FormData();
fdUseSecAuth.left = new FormAttachment(middle, margin);
fdUseSecAuth.left = new FormAttachment(middle, 0);
fdUseSecAuth.top = new FormAttachment(wlUseSecAuth, 0, SWT.CENTER);
fdUseSecAuth.right = new FormAttachment(100, 0);
wUseSecAuth.setLayoutData(fdUseSecAuth);
Expand Down Expand Up @@ -599,7 +599,7 @@ public void widgetSelected(SelectionEvent e) {
PropsUi.setLook(wSecureConnectionType);
wSecureConnectionType.addModifyListener(lsMod);
FormData fdSecureConnectionType = new FormData();
fdSecureConnectionType.left = new FormAttachment(middle, margin);
fdSecureConnectionType.left = new FormAttachment(middle, 0);
fdSecureConnectionType.top = new FormAttachment(wlUseSecAuth, 2 * margin);
fdSecureConnectionType.right = new FormAttachment(100, 0);
wSecureConnectionType.setLayoutData(fdSecureConnectionType);
Expand Down Expand Up @@ -683,7 +683,7 @@ public void widgetSelected(SelectionEvent e) {
wAddDate = new Button(wMessageSettingsGroup, SWT.CHECK);
PropsUi.setLook(wAddDate);
FormData fdAddDate = new FormData();
fdAddDate.left = new FormAttachment(middle, margin);
fdAddDate.left = new FormAttachment(middle, 0);
fdAddDate.top = new FormAttachment(wlAddDate, 0, SWT.CENTER);
fdAddDate.right = new FormAttachment(100, 0);
wAddDate.setLayoutData(fdAddDate);
Expand All @@ -707,7 +707,7 @@ public void widgetSelected(SelectionEvent e) {
wOnlyComment = new Button(wMessageSettingsGroup, SWT.CHECK);
PropsUi.setLook(wOnlyComment);
FormData fdOnlyComment = new FormData();
fdOnlyComment.left = new FormAttachment(middle, margin);
fdOnlyComment.left = new FormAttachment(middle, 0);
fdOnlyComment.top = new FormAttachment(wlOnlyComment, 0, SWT.CENTER);
fdOnlyComment.right = new FormAttachment(100, 0);
wOnlyComment.setLayoutData(fdOnlyComment);
Expand All @@ -731,7 +731,7 @@ public void widgetSelected(SelectionEvent e) {
wUseHTML = new Button(wMessageSettingsGroup, SWT.CHECK);
PropsUi.setLook(wUseHTML);
FormData fdUseHTML = new FormData();
fdUseHTML.left = new FormAttachment(middle, margin);
fdUseHTML.left = new FormAttachment(middle, 0);
fdUseHTML.top = new FormAttachment(wlUseHTML, 0, SWT.CENTER);
fdUseHTML.right = new FormAttachment(100, 0);
wUseHTML.setLayoutData(fdUseHTML);
Expand All @@ -758,7 +758,7 @@ public void widgetSelected(SelectionEvent e) {
PropsUi.setLook(wEncoding);
wEncoding.addModifyListener(lsMod);
FormData fdEncoding = new FormData();
fdEncoding.left = new FormAttachment(middle, margin);
fdEncoding.left = new FormAttachment(middle, 0);
fdEncoding.top = new FormAttachment(wlEncoding, 0, SWT.CENTER);
fdEncoding.right = new FormAttachment(100, 0);
wEncoding.setLayoutData(fdEncoding);
Expand Down Expand Up @@ -792,7 +792,7 @@ public void focusGained(FocusEvent e) {
wUsePriority.setToolTipText(BaseMessages.getString(PKG, "ActionMail.UsePriority.Tooltip"));
PropsUi.setLook(wUsePriority);
FormData fdUsePriority = new FormData();
fdUsePriority.left = new FormAttachment(middle, margin);
fdUsePriority.left = new FormAttachment(middle, 0);
fdUsePriority.top = new FormAttachment(wlUsePriority, 0, SWT.CENTER);
fdUsePriority.right = new FormAttachment(100, 0);
wUsePriority.setLayoutData(fdUsePriority);
Expand Down Expand Up @@ -916,7 +916,7 @@ public void widgetSelected(SelectionEvent e) {
FormData fdlComment = new FormData();
fdlComment.left = new FormAttachment(0, 0);
fdlComment.top = new FormAttachment(wSubject, 2 * margin);
fdlComment.right = new FormAttachment(middle, margin);
fdlComment.right = new FormAttachment(middle, -margin);
wlComment.setLayoutData(fdlComment);

wComment =
Expand All @@ -927,14 +927,14 @@ public void widgetSelected(SelectionEvent e) {
PropsUi.setLook(wComment);
wComment.addModifyListener(lsMod);
FormData fdComment = new FormData();
fdComment.left = new FormAttachment(middle, margin);
fdComment.left = new FormAttachment(middle, 0);
fdComment.top = new FormAttachment(wSubject, 2 * margin);
fdComment.right = new FormAttachment(100, 0);
fdComment.bottom = new FormAttachment(100, -margin);
wComment.setLayoutData(fdComment);

FormData fdMessageGroup = new FormData();
fdMessageGroup.left = new FormAttachment(0, margin);
fdMessageGroup.left = new FormAttachment(0, 0);
fdMessageGroup.top = new FormAttachment(wMessageSettingsGroup, margin);
fdMessageGroup.bottom = new FormAttachment(100, -margin);
fdMessageGroup.right = new FormAttachment(100, -margin);
Expand Down Expand Up @@ -1000,7 +1000,7 @@ public void widgetSelected(SelectionEvent e) {
wIncludeFiles = new Button(wResultFilesGroup, SWT.CHECK);
PropsUi.setLook(wIncludeFiles);
FormData fdIncludeFiles = new FormData();
fdIncludeFiles.left = new FormAttachment(middle, margin);
fdIncludeFiles.left = new FormAttachment(middle, 0);
fdIncludeFiles.top = new FormAttachment(wlIncludeFiles, 0, SWT.CENTER);
fdIncludeFiles.right = new FormAttachment(100, 0);
wIncludeFiles.setLayoutData(fdIncludeFiles);
Expand All @@ -1025,7 +1025,7 @@ public void widgetSelected(SelectionEvent e) {
wTypes = new List(wResultFilesGroup, SWT.MULTI | SWT.BORDER | SWT.V_SCROLL | SWT.H_SCROLL);
PropsUi.setLook(wTypes);
FormData fdTypes = new FormData();
fdTypes.left = new FormAttachment(middle, margin);
fdTypes.left = new FormAttachment(middle, 0);
fdTypes.top = new FormAttachment(wlIncludeFiles, 2 * margin);
fdTypes.bottom =
new FormAttachment(wIncludeFiles, margin + (int) (150 * props.getZoomFactor()));
Expand All @@ -1047,7 +1047,7 @@ public void widgetSelected(SelectionEvent e) {
wZipFiles = new Button(wResultFilesGroup, SWT.CHECK);
PropsUi.setLook(wZipFiles);
FormData fdZipFiles = new FormData();
fdZipFiles.left = new FormAttachment(middle, margin);
fdZipFiles.left = new FormAttachment(middle, 0);
fdZipFiles.top = new FormAttachment(wlZipFiles, 0, SWT.CENTER);
fdZipFiles.right = new FormAttachment(100, 0);
wZipFiles.setLayoutData(fdZipFiles);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ ActionMail.Log.Comment.Workflow=Workflow:
ActionMail.Name=Mail
ActionMail.NameOfEntry.Label=Action name
ActionMail.NameOfEntry.Tooltip=Name of mail action
ActionMail.OnlyCommentInBody.Label=Only send comment in mail body?
ActionMail.OnlyCommentInBody.Label=Only send comment in mail body
ActionMail.Port.Label=Port
ActionMail.Port.Tooltip=Port for SMTP (standard protocol) or SMTPS (secure protocol)
ActionMail.Priority.High.Label=High
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,14 +92,14 @@ public IAction open() {
changed = action.hasChanged();

FormLayout formLayout = new FormLayout();
formLayout.marginWidth = Const.FORM_MARGIN;
formLayout.marginHeight = Const.FORM_MARGIN;
formLayout.marginWidth = PropsUi.getFormMargin();
formLayout.marginHeight = PropsUi.getFormMargin();

shell.setLayout(formLayout);
shell.setText(BaseMessages.getString(PKG, "ActionMailValidatorDialog.Title"));

int middle = props.getMiddlePct();
int margin = Const.MARGIN;
int margin = PropsUi.getMargin();

// Buttons go at the very bottom
//
Expand All @@ -117,14 +117,14 @@ public IAction open() {
PropsUi.setLook(wlName);
FormData fdlName = new FormData();
fdlName.left = new FormAttachment(0, 0);
fdlName.right = new FormAttachment(middle, 0);
fdlName.right = new FormAttachment(middle, -margin);
fdlName.top = new FormAttachment(0, margin);
wlName.setLayoutData(fdlName);
wName = new Text(shell, SWT.SINGLE | SWT.LEFT | SWT.BORDER);
PropsUi.setLook(wName);
wName.addModifyListener(lsMod);
FormData fdName = new FormData();
fdName.left = new FormAttachment(middle, margin);
fdName.left = new FormAttachment(middle, 0);
fdName.top = new FormAttachment(0, margin);
fdName.right = new FormAttachment(100, 0);
wName.setLayoutData(fdName);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ ActionPGPDecryptFiles.Move_To_Folder_IfFileExists.Label=Move source file to fold
ActionPGPDecryptFiles.MovedDateTimeFormat.Label=Date format
ActionPGPDecryptFiles.Name=Decrypt files with PGP
ActionPGPDecryptFiles.Name.Default=Move files
ActionPGPDecryptFiles.Name.Label=Action name\:
ActionPGPDecryptFiles.Name.Label=Action name
ActionPGPDecryptFiles.NrErrorsLessThan.Label=Nr errors lesser than
ActionPGPDecryptFiles.NrErrorsLessThan.Tooltip=Success when Number of errors is lesser than
ActionPGPDecryptFiles.Overwrite_File_IfFileExists.Label=Overwrite destination file
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ ActionPGPEncryptFiles.Move_To_Folder_IfFileExists.Label=Move source file to fold
ActionPGPEncryptFiles.MovedDateTimeFormat.Label=Date format
ActionPGPEncryptFiles.Name=Encrypt files with PGP
ActionPGPEncryptFiles.Name.Default=Move files
ActionPGPEncryptFiles.Name.Label=Action name\:
ActionPGPEncryptFiles.Name.Label=Action name
ActionPGPEncryptFiles.NrErrorsLessThan.Label=Nr errors lesser than
ActionPGPEncryptFiles.NrErrorsLessThan.Tooltip=Success when Number of errors is lesser than
ActionPGPEncryptFiles.Overwrite_File_IfFileExists.Label=Overwrite destination file
Expand Down
Loading

0 comments on commit 5bab9e5

Please sign in to comment.