Skip to content

Commit eec9a47

Browse files
authored
Update the guided tour locale keys so they can't clash with other ones. (baserow#4198)
1 parent 7c9c836 commit eec9a47

2 files changed

Lines changed: 21 additions & 21 deletions

File tree

web-frontend/modules/automation/guidedTourTypes.js

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ import {
55

66
class WelcomeGuidedTourStep extends GuidedTourStep {
77
get title() {
8-
return this.app.i18n.t('welcomeGuidedTourStep.title')
8+
return this.app.i18n.t('automationWelcomeGuidedTourStep.title')
99
}
1010

1111
get content() {
12-
return this.app.i18n.t('welcomeGuidedTourStep.content')
12+
return this.app.i18n.t('automationWelcomeGuidedTourStep.content')
1313
}
1414

1515
get selectors() {
@@ -23,11 +23,11 @@ class WelcomeGuidedTourStep extends GuidedTourStep {
2323

2424
class GraphGuidedTourStep extends GuidedTourStep {
2525
get title() {
26-
return this.app.i18n.t('graphGuidedTourStep.title')
26+
return this.app.i18n.t('automationGraphGuidedTourStep.title')
2727
}
2828

2929
get content() {
30-
return this.app.i18n.t('graphGuidedTourStep.content')
30+
return this.app.i18n.t('automationGraphGuidedTourStep.content')
3131
}
3232

3333
get selectors() {
@@ -45,11 +45,11 @@ class GraphGuidedTourStep extends GuidedTourStep {
4545

4646
class HistoryGuidedTourStep extends GuidedTourStep {
4747
get title() {
48-
return this.app.i18n.t('historyGuidedTourStep.title')
48+
return this.app.i18n.t('automationHistoryGuidedTourStep.title')
4949
}
5050

5151
get content() {
52-
return this.app.i18n.t('historyGuidedTourStep.content')
52+
return this.app.i18n.t('automationHistoryGuidedTourStep.content')
5353
}
5454

5555
get selectors() {
@@ -63,11 +63,11 @@ class HistoryGuidedTourStep extends GuidedTourStep {
6363

6464
class TestRunGuidedTourStep extends GuidedTourStep {
6565
get title() {
66-
return this.app.i18n.t('testRunGuidedTourStep.title')
66+
return this.app.i18n.t('automationTestRunGuidedTourStep.title')
6767
}
6868

6969
get content() {
70-
return this.app.i18n.t('testRunGuidedTourStep.content')
70+
return this.app.i18n.t('automationTestRunGuidedTourStep.content')
7171
}
7272

7373
get selectors() {
@@ -81,11 +81,11 @@ class TestRunGuidedTourStep extends GuidedTourStep {
8181

8282
class PublishGuidedTourStep extends GuidedTourStep {
8383
get title() {
84-
return this.app.i18n.t('publishGuidedTourStep.title')
84+
return this.app.i18n.t('automationPublishGuidedTourStep.title')
8585
}
8686

8787
get content() {
88-
return this.app.i18n.t('publishGuidedTourStep.content')
88+
return this.app.i18n.t('automationPublishGuidedTourStep.content')
8989
}
9090

9191
get selectors() {
@@ -99,11 +99,11 @@ class PublishGuidedTourStep extends GuidedTourStep {
9999

100100
class StateGuidedTourStep extends GuidedTourStep {
101101
get title() {
102-
return this.app.i18n.t('workflowStateGuidedTourStep.title')
102+
return this.app.i18n.t('automationWorkflowStateGuidedTourStep.title')
103103
}
104104

105105
get content() {
106-
return this.app.i18n.t('workflowStateGuidedTourStep.content')
106+
return this.app.i18n.t('automationWorkflowStateGuidedTourStep.content')
107107
}
108108

109109
get selectors() {
@@ -117,11 +117,11 @@ class StateGuidedTourStep extends GuidedTourStep {
117117

118118
class DocsGuidedTourStep extends GuidedTourStep {
119119
get title() {
120-
return this.app.i18n.t('docsGuidedTourStep.title')
120+
return this.app.i18n.t('automationDocsGuidedTourStep.title')
121121
}
122122

123123
get content() {
124-
return this.app.i18n.t('docsGuidedTourStep.content')
124+
return this.app.i18n.t('automationDocsGuidedTourStep.content')
125125
}
126126

127127
get selectors() {

web-frontend/modules/automation/locales/en.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,29 @@
11
{
2-
"welcomeGuidedTourStep": {
2+
"automationWelcomeGuidedTourStep": {
33
"title": "Welcome to Baserow Automations!",
44
"content": "Let's take a quick tour. You'll see how to set up triggers, add actions, test your workflow, and publish it — no coding required."
55
},
6-
"graphGuidedTourStep": {
6+
"automationGraphGuidedTourStep": {
77
"title": "Manage your workflow graph here",
88
"content": "Create a trigger and actions here to define what the workflow should do. Select a trigger or action to configure it in the side panel."
99
},
10-
"testRunGuidedTourStep": {
10+
"automationTestRunGuidedTourStep": {
1111
"title": "Test your workflow",
1212
"content": "When you're ready, start a test run to see your workflow in action. The trigger will run once to simulate a full execution."
1313
},
14-
"historyGuidedTourStep": {
14+
"automationHistoryGuidedTourStep": {
1515
"title": "View workflow history",
1616
"content": "Use the history panel to review past test runs and published executions. It's a great way to debug or confirm results."
1717
},
18-
"publishGuidedTourStep": {
18+
"automationPublishGuidedTourStep": {
1919
"title": "Publish your workflow",
2020
"content": "Once you've tested and refined your setup, publish your workflow to make it live. Its trigger will now run automatically on schedule."
2121
},
22-
"workflowStateGuidedTourStep": {
22+
"automationWorkflowStateGuidedTourStep": {
2323
"title": "Control workflow state",
2424
"content": "From here, you can pause or resume your workflow at any time. You're always in control of whether it's active or disabled."
2525
},
26-
"docsGuidedTourStep": {
26+
"automationDocsGuidedTourStep": {
2727
"title": "Explore the documentation",
2828
"content": "If you ever get stuck or want to learn more, click the highlighted button for detailed guides and FAQs about building automations in Baserow."
2929
},

0 commit comments

Comments
 (0)