Add title view translation
gitea/hedera-web/pipeline/pr-4922-vueMigration This commit looks good
Details
gitea/hedera-web/pipeline/pr-4922-vueMigration This commit looks good
Details
This commit is contained in:
parent
c53658e6e0
commit
2bff9304e8
|
@ -59,6 +59,7 @@ export default {
|
||||||
adminPhotos: 'Imatges',
|
adminPhotos: 'Imatges',
|
||||||
adminNews: 'Gestió de noticies',
|
adminNews: 'Gestió de noticies',
|
||||||
adminNewsDetails: 'Afegir o editar notícia',
|
adminNewsDetails: 'Afegir o editar notícia',
|
||||||
|
basket: 'Cistella de la compra',
|
||||||
//
|
//
|
||||||
orderLoadedIntoBasket: 'Comanda carregada a la cistella!',
|
orderLoadedIntoBasket: 'Comanda carregada a la cistella!',
|
||||||
loadAnOrder:
|
loadAnOrder:
|
||||||
|
|
|
@ -72,6 +72,7 @@ export default {
|
||||||
adminPhotos: 'Images',
|
adminPhotos: 'Images',
|
||||||
adminNews: 'News management',
|
adminNews: 'News management',
|
||||||
adminNewsDetails: 'Add or edit new',
|
adminNewsDetails: 'Add or edit new',
|
||||||
|
basket: 'Shopping basket',
|
||||||
//
|
//
|
||||||
orderLoadedIntoBasket: 'Order loaded into basket!',
|
orderLoadedIntoBasket: 'Order loaded into basket!',
|
||||||
loadAnOrder: 'Please load a pending order to the cart or start a new one',
|
loadAnOrder: 'Please load a pending order to the cart or start a new one',
|
||||||
|
|
|
@ -78,6 +78,7 @@ export default {
|
||||||
adminPhotos: 'Imágenes',
|
adminPhotos: 'Imágenes',
|
||||||
adminNews: 'Gestión de noticias',
|
adminNews: 'Gestión de noticias',
|
||||||
adminNewsDetails: 'Añadir o editar noticia',
|
adminNewsDetails: 'Añadir o editar noticia',
|
||||||
|
basket: 'Cesta de la compra',
|
||||||
//
|
//
|
||||||
orderLoadedIntoBasket: '¡Pedido cargado en la cesta!',
|
orderLoadedIntoBasket: '¡Pedido cargado en la cesta!',
|
||||||
loadAnOrder:
|
loadAnOrder:
|
||||||
|
|
|
@ -60,6 +60,7 @@ export default {
|
||||||
adminNews: 'Gestion des nouvelles',
|
adminNews: 'Gestion des nouvelles',
|
||||||
adminNewsDetails: 'Ajouter ou editer nouvelles',
|
adminNewsDetails: 'Ajouter ou editer nouvelles',
|
||||||
emptyList: 'Vider la liste',
|
emptyList: 'Vider la liste',
|
||||||
|
basket: 'Panier',
|
||||||
//
|
//
|
||||||
orderLoadedIntoBasket: 'Commande chargée dans le panier!',
|
orderLoadedIntoBasket: 'Commande chargée dans le panier!',
|
||||||
loadAnOrder:
|
loadAnOrder:
|
||||||
|
|
|
@ -61,6 +61,7 @@ export default {
|
||||||
adminNews: 'Gestão de notícias',
|
adminNews: 'Gestão de notícias',
|
||||||
adminNewsDetails: 'Ajouter ou editer nouvelles',
|
adminNewsDetails: 'Ajouter ou editer nouvelles',
|
||||||
emptyList: 'Lista vazia',
|
emptyList: 'Lista vazia',
|
||||||
|
basket: 'Cesta da compra',
|
||||||
//
|
//
|
||||||
orderLoadedIntoBasket: 'Pedido carregado na cesta!',
|
orderLoadedIntoBasket: 'Pedido carregado na cesta!',
|
||||||
loadAnOrder: 'Carregue um pedido pendente no carrinho ou inicie um novo',
|
loadAnOrder: 'Carregue um pedido pendente no carrinho ou inicie um novo',
|
||||||
|
|
|
@ -67,7 +67,6 @@ const getItems = async () => {
|
||||||
WHERE orderFk = #id`,
|
WHERE orderFk = #id`,
|
||||||
{ id: orderId.value }
|
{ id: orderId.value }
|
||||||
);
|
);
|
||||||
console.log('data', data);
|
|
||||||
|
|
||||||
const formattedData = data.map(i => {
|
const formattedData = data.map(i => {
|
||||||
const { amount: quantity, ...item } = i;
|
const { amount: quantity, ...item } = i;
|
||||||
|
|
|
@ -63,7 +63,6 @@ const fetchInvoices = async () => {
|
||||||
LIMIT 100`,
|
LIMIT 100`,
|
||||||
params
|
params
|
||||||
);
|
);
|
||||||
console.log(invoices.value);
|
|
||||||
};
|
};
|
||||||
|
|
||||||
onMounted(async () => {
|
onMounted(async () => {
|
||||||
|
|
Loading…
Reference in New Issue