Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cleanup static tooltip messages, fixes #2490 #2499

Merged
merged 1 commit into from
Mar 2, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ public class ActionPipelineGuiPlugin {
id = "pipeline-graph-transform-10300-copy-pipeline-action",
parentId = HopGuiPipelineContext.CONTEXT_ID,
type = GuiActionType.Modify,
name = "Copy as pipeline action",
tooltip = "Copy this pipeline as an action so you can paste it in a workflow",
name = "i18n::ActionPipeline.Copy.Name",
tooltip = "i18n::ActionPipeline.Copy.Description",
image = "ui/images/copy.svg",
category = "Basic",
categoryOrder = "1")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
# limitations under the License.
#

ActionPipeline.Copy.Name=Copy as pipeline action
ActionPipeline.Copy.Description=Copy this pipeline as an action so you can paste it in a workflow
ActionPipeline.ClearResultFiles.Label=Clear results files before execution
ActionPipeline.ClearResultList.Label=Clear results rows before execution
ActionPipeline.Description=Executes a pipeline
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ public class ActionWorkflowGuiPlugin {
id = "workflow-graph-workflow-copy-action",
parentId = HopGuiWorkflowContext.CONTEXT_ID,
type = GuiActionType.Modify,
name = "Copy as workflow action",
tooltip = "Copy this workflow as an action so you can paste it in another workflow",
name = "i18n::ActionWorkflow.Copy.Name",
tooltip = "i18n::ActionWorkflow.Copy.Description",
image = "ui/images/copy.svg",
category = "Basic",
categoryOrder = "1")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@
#
#

ActionWorkflow.Copy.Name=Copy as workflow action
ActionWorkflow.Copy.Description=Copy this workflow as an action so you can paste it in another workflow
ActionWorkflow.Description=Executes a workflow
ActionWorkflow.Error.ChekingParentLogFolder=Error checking parent folder [{0}] for log file\!
ActionWorkflow.Error.ChekingParentLogFolderTitle=Error
Expand Down
Loading