Skip to content

Commit

Permalink
Merge pull request #3996 from nadment/3987
Browse files Browse the repository at this point in the history
Fix typo #3987, #3955
  • Loading branch information
hansva committed May 29, 2024
2 parents ae579d9 + ea6753e commit 1db8678
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,4 @@ ActionSetVariables.VariableType.JVM=Valid in the Java Virtual Machine
ActionSetVariables.VariableType.ParentWorkflow=Valid in the parent workflow
ActionSetVariables.VariableType.RootWorkflow=Valid in the root workflow
ActionSetVariables.VarsReplace.Label=Variable substitution?
ActionSetVariables.VarsReplace.Tooltip=Check this option if you wan to do a variable\nsubstitution (in name and value) before setting variables.
ActionSetVariables.VarsReplace.Tooltip=Check this option if you want to do a variable\nsubstitution (in name and value) before setting variables.
Original file line number Diff line number Diff line change
Expand Up @@ -726,7 +726,8 @@ public void widgetSelected(SelectionEvent e) {
wlSplitOutputAfter.setLayoutData(fdlSplitOutputAfter);
wSplitOutputAfter = new TextVar(variables, wFilenameGroup, SWT.BORDER | SWT.READ_ONLY);
wSplitOutputAfter.setEditable(true);
wSplitOutputAfter.setToolTipText("JsonOutputDialog.splitOutputAfter.Tooltip");
wSplitOutputAfter.setToolTipText(
BaseMessages.getString(PKG, "JsonOutputDialog.splitOutputAfter.Tooltip"));
PropsUi.setLook(wSplitOutputAfter);
FormData fdSplitOutputAfter = new FormData();
fdSplitOutputAfter.left = new FormAttachment(middle, 0);
Expand Down

0 comments on commit 1db8678

Please sign in to comment.