- creato editor di Pagine (iniziato)
- fix: mancano i "t," su alcuni componenti...
This commit is contained in:
@@ -22,6 +22,7 @@ export default defineComponent({
|
||||
|
||||
setup() {
|
||||
const $q = useQuasar()
|
||||
const { t } = useI18n()
|
||||
const globalStore = useGlobalStore()
|
||||
|
||||
const { getarrValDb, getValDb } = MixinBase()
|
||||
@@ -88,6 +89,7 @@ export default defineComponent({
|
||||
getValDb,
|
||||
site,
|
||||
getBackColorText,
|
||||
t,
|
||||
}
|
||||
},
|
||||
})
|
||||
|
||||
@@ -18,7 +18,7 @@
|
||||
<div class="">
|
||||
<div v-if="!!site.contacts && !!site.contacts.address">
|
||||
<p class="mycontacts_title q-mt-sm">
|
||||
{{ $t('footer.titleaddress') }}
|
||||
{{ t('footer.titleaddress') }}
|
||||
</p>
|
||||
<p class="mycontacts_address">
|
||||
{{ site.contacts.address }}
|
||||
@@ -112,7 +112,7 @@
|
||||
<!--</div>-->
|
||||
</div>
|
||||
<div class="col-12 col-sm-4">
|
||||
<p class="mycontacts_title q-mt-sm">{{ $t('homepage.titlecontatti') }}:</p>
|
||||
<p class="mycontacts_title q-mt-sm">{{ t('homepage.titlecontatti') }}:</p>
|
||||
<div class="text-center q-my-sm">
|
||||
<div class="q-mt-xs mycontacts">
|
||||
<div class="mycontacts_text">
|
||||
@@ -227,7 +227,7 @@
|
||||
</div>
|
||||
|
||||
<FormNewsletter
|
||||
v-if="site.confpages.showNL"
|
||||
v-if="site.confpages?.showNL"
|
||||
:idwebsite="tools.appid()"
|
||||
:locale="toolsext.getLocale()"
|
||||
>
|
||||
@@ -245,7 +245,7 @@
|
||||
@click="navigate"
|
||||
@keypress.enter="navigate"
|
||||
role="link"
|
||||
>{{ $t('privacy_policy') }}</span
|
||||
>{{ t('privacy_policy') }}</span
|
||||
></router-link
|
||||
>
|
||||
</p>
|
||||
|
||||
Reference in New Issue
Block a user