diff --git a/src/components/steps/Step1/Step1Right.vue b/src/components/steps/Step1/Step1Right.vue
index 5d9e66e..273a6d2 100644
--- a/src/components/steps/Step1/Step1Right.vue
+++ b/src/components/steps/Step1/Step1Right.vue
@@ -1,20 +1,14 @@
- {{ $t("step1.info_line1") }}
-
- {{ $t("step1.info_line2") }}
-
- {{ $t("step1.info_line3") }}
-
- {{ $t("step1.info_line4") }}
-
- {{ $t("step1.info_line5") }}
- {{ $t("general.why_and_how") }} {{ $t("step1.info_line1") }} {{ $t("step1.dac_name") }} {{ $t("step1.info_line2") }} {{ $t("step1.token_symbol") }} {{ $t("step1.info_line3") }} {{ $t("step1.description") }} {{ $t("step1.info_line4") }}{{ $t("step1.title_right") }}
+
issuance
+{{ $t("step2.issuance") }}
{{ $t("step2.info_line1") }}
diff --git a/src/components/steps/Step4/index.js b/src/components/steps/Step4/index.js new file mode 100644 index 0000000..7417655 --- /dev/null +++ b/src/components/steps/Step4/index.js @@ -0,0 +1,2 @@ +export { default as Step4Form } from "./Step4Form"; +export { default as Step4Right } from "./Step4Right"; diff --git a/src/components/steps/Step5/Step5Right.vue b/src/components/steps/Step5/Step5Right.vue index 87754ac..6b0bc4e 100644 --- a/src/components/steps/Step5/Step5Right.vue +++ b/src/components/steps/Step5/Step5Right.vue @@ -9,7 +9,7 @@{{ $t("step1.description") }}
{{ step1.dacDescription }}
{{ $t("step2.issuance", { token_symbol: step1.tokenSymbol }) }}
+{{ $t("step2.issuance") }} {{ step1.tokenSymbol }}
{{ step2.issuance }}
{{ $t("step2.decimals") }}
{{ step2.decimals }}
diff --git a/src/components/steps/Step5/index.js b/src/components/steps/Step5/index.js new file mode 100644 index 0000000..0f6a0f7 --- /dev/null +++ b/src/components/steps/Step5/index.js @@ -0,0 +1,2 @@ +export { default as Step5Form } from "./Step5Form"; +export { default as Step5Right } from "./Step5Right"; diff --git a/src/i18n/en-us/index.js b/src/i18n/en-us/index.js index ba17be1..8374fcc 100644 --- a/src/i18n/en-us/index.js +++ b/src/i18n/en-us/index.js @@ -76,6 +76,7 @@ export default { }, step1: { title: "DAC Profile", + title_right: "Understanding of profile", dac_name: "DAC Name", dac_name_hint: "Enter a name for your DAC", dac_name_rule_length_3: "DAC name must be minimum 3 chars.", @@ -94,14 +95,12 @@ export default { info_line3: "Your token symbol should contain capital letters only and is limited to 7 characters. Ideally, you’ll want to avoid using a token symbol which might be confused with existing EOS tokens. This token will be your governance token used by your members to elect custodians.", info_line4: - "A DAC is a group of people with a shared goal. Your DAC Description should let people know what your community goal is all about and why they might want to participate.", - info_line5: - "The DAC ID is a unique identifier for your DAC used by the system to keep your data organized together and will be generated from your DAC Name." + "A DAC is a group of people with a shared goal. Your DAC Description should let people know what your community goal is all about and why they might want to participate." }, step2: { title: "Tokenomics", title_right: "Understanding of tokenomics", - issuance: "Issuance {token_symbol}", + issuance: "Issuance", issuance_hint: "Issuance for your token", decimals: "Decimals", info_line1: diff --git a/src/pages/Steps.vue b/src/pages/Steps.vue index 30c5c39..cdc258c 100644 --- a/src/pages/Steps.vue +++ b/src/pages/Steps.vue @@ -78,10 +78,8 @@ import { STEPS_NUMBER } from "components/constants"; import { Step1Form, Step1Right } from "components/steps/Step1"; import { Step2Form, Step2Right } from "components/steps/Step2"; import { Step3Form, Step3Right } from "components/steps/Step3"; -import Step4Form from "components/steps/Step4/Step4Form"; -import Step4Right from "components/steps/Step4/Step4Right"; -import Step5Form from "components/steps/Step5/Step5Form"; -import Step5Right from "components/steps/Step5/Step5Right"; +import { Step4Form, Step4Right } from "components/steps/Step4"; +import { Step5Form, Step5Right } from "components/steps/Step5"; export default { data() {