-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* text updates from legal text updates # * update pkg version * remove unused schema * overwrite i18n instead of new schema
- Loading branch information
Showing
19 changed files
with
210 additions
and
101 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<template> | ||
<ul :aria-label="$t('contactInfo.strr.listTitle')"> | ||
<li> | ||
<span class="inline-flex items-center gap-1"> | ||
<UIcon name="i-mdi-phone" class="mr-2 size-5 text-blue-500" /> | ||
{{ $t('contactInfo.strr.tollFree.title') }} | ||
<a class="text-blue-500 underline" href="tel:+1-833-828-2240">1-833-828-2240</a> | ||
</span> | ||
</li> | ||
<li> | ||
<span class="inline-flex items-center gap-1"> | ||
<UIcon name="i-mdi-phone" class="mr-2 size-5 text-blue-500" /> | ||
{{ $t('contactInfo.strr.victoriaOffice.title') }} | ||
<a class="text-blue-500 underline" href="tel:+1-604-630-4058">604-630-4058</a> | ||
</span> | ||
</li> | ||
<li> | ||
<span class="inline-flex items-center gap-1"> | ||
<UIcon name="i-mdi-email" class="mr-2 size-5 text-blue-500" /> | ||
{{ $t('contactInfo.strr.email.title') }} | ||
<a | ||
class="text-blue-500 underline" | ||
href="mailto:[email protected]" | ||
target="_blank" | ||
> | ||
[email protected] | ||
</a> | ||
</span> | ||
</li> | ||
</ul> | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<script setup lng="ts"> | ||
const strrModal = useStrrModals() | ||
</script> | ||
<template> | ||
<div class="flex flex-col gap-2 sm:flex-row sm:gap-4"> | ||
<UButton | ||
:label="$t('modal.help.registerStr.triggerBtn')" | ||
:padded="false" | ||
icon="i-mdi-help-circle-outline" | ||
variant="link" | ||
@click="strrModal.openHelpRegisterModal()" | ||
/> | ||
|
||
<UDivider | ||
orientation="vertical" | ||
class="hidden sm:block" | ||
/> | ||
|
||
<UButton | ||
:label="$t('modal.info.collectionNotice.triggerBtn')" | ||
:padded="false" | ||
icon="i-mdi-information-circle-outline" | ||
variant="link" | ||
@click="strrModal.openInfoCollectionNoticeModal()" | ||
/> | ||
</div> | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<template> | ||
<ModalBase :title="$t('modal.help.registerStr.title')"> | ||
<div class="space-y-8"> | ||
<i18n-t keypath="modal.help.registerStr.content" tag="p" scope="global"> | ||
<template #link> | ||
<a | ||
href="https://www.STRregistry.gov.bc.ca" | ||
target="_blank" | ||
class="text-bcGovColor-activeBlue underline" | ||
> | ||
STRregistry.gov.bc.ca | ||
</a> | ||
</template> | ||
</i18n-t> | ||
<div class="h-20 w-full"> | ||
<ContactSTRR /> | ||
</div> | ||
</div> | ||
</ModalBase> | ||
</template> |
21 changes: 21 additions & 0 deletions
21
strr-base-web/app/components/modal/info/CollectionNotice.vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<template> | ||
<ModalBase :title="$t('modal.info.collectionNotice.title')"> | ||
<div class="space-y-8"> | ||
<i18n-t keypath="modal.info.collectionNotice.content" tag="p" scope="global"> | ||
<template #act> | ||
<em class="italic">{{ $t('act.strrAccomodations') }}</em> | ||
</template> | ||
|
||
<template #email> | ||
<a | ||
class="text-blue-500 underline" | ||
href="mailto:[email protected]" | ||
target="_blank" | ||
> | ||
[email protected] | ||
</a> | ||
</template> | ||
</i18n-t> | ||
</div> | ||
</ModalBase> | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.