rename stores to stalls

This commit is contained in:
Tiago vasconcelos 2022-09-23 10:25:57 +01:00
parent 131d9f689c
commit e80daf2795

View file

@ -314,7 +314,7 @@
unelevated unelevated
color="primary" color="primary"
type="submit" type="submit"
>Update Store</q-btn >Update Stall</q-btn
> >
<q-btn <q-btn
v-else v-else
@ -323,7 +323,7 @@
:disable="stallDialog.data.wallet == null :disable="stallDialog.data.wallet == null
|| stallDialog.data.shippingzones == null" || stallDialog.data.shippingzones == null"
type="submit" type="submit"
>Create Store</q-btn >Create Stall</q-btn
> >
<q-btn <q-btn
v-close-popup v-close-popup
@ -363,21 +363,25 @@
v-if="zones.length > 0" v-if="zones.length > 0"
color="primary" color="primary"
@click="openStallDialog()" @click="openStallDialog()"
>+ Store >+ Stall
<q-tooltip> Create a stall to list products on </q-tooltip></q-btn <q-tooltip>
Create a market stall to list products on
</q-tooltip></q-btn
> >
<q-btn <q-btn
unelevated unelevated
v-else v-else
color="primary" color="primary"
@click="errorMessage('First set shipping zone(s).')" @click="errorMessage('First set shipping zone(s).')"
>+ Store >+ Stall
<q-tooltip> Create a store to list products on </q-tooltip></q-btn <q-tooltip>
Create a market stall to list products on
</q-tooltip></q-btn
> >
<q-btn unelevated color="primary" @click="marketDialog.show = true" <q-btn unelevated color="primary" @click="marketDialog.show = true"
>Launch frontend shop (not Nostr) >Create Market
<q-tooltip> <q-tooltip>
Makes a simple frontend shop for your stalls</q-tooltip Makes a simple frontend shop for your stalls (not NOSTR)</q-tooltip
></q-btn ></q-btn
> >
</q-card-section> </q-card-section>
@ -596,11 +600,11 @@
</q-card> </q-card>
<q-card> <q-card>
<!-- STORES TABLE --> <!-- STALLS TABLE -->
<q-card-section> <q-card-section>
<div class="row items-center no-wrap q-mb-md"> <div class="row items-center no-wrap q-mb-md">
<div class="col"> <div class="col">
<h5 class="text-subtitle1 q-my-none">Stores</h5> <h5 class="text-subtitle1 q-my-none">Market Stalls</h5>
</div> </div>
<div class="col-auto"> <div class="col-auto">
<q-btn flat color="grey" @click="exportStallsCSV" <q-btn flat color="grey" @click="exportStallsCSV"
@ -1030,7 +1034,7 @@
{ {
name: 'stall', name: 'stall',
align: 'left', align: 'left',
label: 'Store', label: 'Stall',
field: 'stall' field: 'stall'
}, },
{ {
@ -1118,7 +1122,7 @@
{ {
name: 'stores', name: 'stores',
align: 'left', align: 'left',
label: 'Stores', label: 'Stalls',
field: 'stores' field: 'stores'
} }
], ],