diff --git a/website/client/components/inventory/stable/hatchedPetDialog.vue b/website/client/components/inventory/stable/hatchedPetDialog.vue index 3c1610a91f..d02d374eb8 100644 --- a/website/client/components/inventory/stable/hatchedPetDialog.vue +++ b/website/client/components/inventory/stable/hatchedPetDialog.vue @@ -12,13 +12,7 @@ div(:class="pet.class") h4.title {{ pet.name }} - div.text(v-if="!hideText") - | Visit the - | - router-link(:to="{name: 'stable'}") {{ $t('stable') }} - | - | to feed and equip your newest pet! - // @TODO make translatable with the entire sentence in one string (translators can't do sentences in multiple parts) + div.text(v-if="!hideText", v-markdown="$t('hatchedPetHowToUse')") button.btn.btn-primary(@click="close()") {{ $t('onward') }} @@ -70,6 +64,7 @@