This is an automated email from the ASF dual-hosted git repository.
tiagobento pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-kie-tools.git
The following commit(s) were added to refs/heads/main by this push:
new 51560a07e6d NO-ISSUE: Moved text to dictionary in scesim-editor
(#3650)
51560a07e6d is described below
commit 51560a07e6dee9b0affaa2d9518ee153f84b003b
Author: Kusuma04-dev <[email protected]>
AuthorDate: Thu Jul 9 04:55:27 2026 +0530
NO-ISSUE: Moved text to dictionary in scesim-editor (#3650)
Co-authored-by: Kusuma <[email protected]>
---
packages/scesim-editor/src/creation/TestScenarioCreationPanel.tsx | 2 +-
packages/scesim-editor/src/i18n/TestScenarioEditorI18n.ts | 1 +
packages/scesim-editor/src/i18n/locales/en.ts | 1 +
3 files changed, 3 insertions(+), 1 deletion(-)
diff --git a/packages/scesim-editor/src/creation/TestScenarioCreationPanel.tsx
b/packages/scesim-editor/src/creation/TestScenarioCreationPanel.tsx
index a35394cf2e5..ccfe3d09ba1 100644
--- a/packages/scesim-editor/src/creation/TestScenarioCreationPanel.tsx
+++ b/packages/scesim-editor/src/creation/TestScenarioCreationPanel.tsx
@@ -327,7 +327,7 @@ function TestScenarioCreationPanel() {
<Alert
className="kie-scesim-editor-creation-panel--rule-scesim-alert"
variant="danger"
- title="Rule based Test Scenario is not supported yet."
+ title={i18n.creationPanel.ruleNotSupported}
/>
)}
</EmptyStateBody>
diff --git a/packages/scesim-editor/src/i18n/TestScenarioEditorI18n.ts
b/packages/scesim-editor/src/i18n/TestScenarioEditorI18n.ts
index 52deaf0dbaf..bcfb7d6352a 100644
--- a/packages/scesim-editor/src/i18n/TestScenarioEditorI18n.ts
+++ b/packages/scesim-editor/src/i18n/TestScenarioEditorI18n.ts
@@ -34,6 +34,7 @@ interface TestScenarioEditorDictionary
noChoice: string;
rule: string;
};
+ ruleNotSupported: string;
autoFillTable: string;
autoFillTableTooltip: string;
createButton: string;
diff --git a/packages/scesim-editor/src/i18n/locales/en.ts
b/packages/scesim-editor/src/i18n/locales/en.ts
index 682acd850a0..2075cea9c59 100644
--- a/packages/scesim-editor/src/i18n/locales/en.ts
+++ b/packages/scesim-editor/src/i18n/locales/en.ts
@@ -37,6 +37,7 @@ export const en: TestScenarioEditorI18n = {
noChoice: "Select a type",
rule: "Rule (DRL)",
},
+ ruleNotSupported: "Rule based Test Scenario is not supported yet.",
autoFillTable: "Autofill DMN Data",
autoFillTableTooltip:
"If checked, the Test Scenario table will be automatically populated
based on the provided DMN data (Input nodes assigned as GIVEN columns and
Output nodes assigned as EXPECT colums)",
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]