- creato editor di Pagine (iniziato)

- fix: mancano i "t," su alcuni componenti...
This commit is contained in:
Surya Paolo
2025-09-02 16:22:13 +02:00
parent 4f4297ca21
commit 574f389200
324 changed files with 5838 additions and 759 deletions

View File

@@ -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,
}
},
})

View File

@@ -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>