diff --git a/website/client/components/inventory/stable/hatchedPetDialog.vue b/website/client/components/inventory/stable/hatchedPetDialog.vue index 2a641bbb01..0b36304569 100644 --- a/website/client/components/inventory/stable/hatchedPetDialog.vue +++ b/website/client/components/inventory/stable/hatchedPetDialog.vue @@ -6,7 +6,7 @@ b-modal#hatchedPet-modal(:hide-header="true") div.pet-background div(:class="pet.class") h4.title {{ pet.name }} - div.text(v-if="!hideText", v-markdown="$t('hatchedPetHowToUse')") + div.text(v-if="!hideText", v-markdown="$t('hatchedPetHowToUse', { stableUrl: '/inventory/stable' })") button.btn.btn-primary(@click="close()") {{ $t('onward') }} div.clearfix(slot="modal-footer") diff --git a/website/client/components/static/overview.vue b/website/client/components/static/overview.vue index cfd14c700b..5866630186 100644 --- a/website/client/components/static/overview.vue +++ b/website/client/components/static/overview.vue @@ -6,9 +6,9 @@ p {{ $t('needTips') }} div(v-for='step in stepsNum') h3 {{ $t('step'+step) }} - p(v-markdown="$t('webStep'+step+'Text')") + p(v-markdown="$t('webStep'+step+'Text', stepVars[step])") hr - p(v-markdown="$t('overviewQuestions')") + p(v-markdown="$t('overviewQuestions', {faqUrl: '/static/faq/', helpGuildUrl: '/groups/guild/5481ccf3-5d2d-48a9-a871-70a7380cee5a'})")