Add title view translation
gitea/hedera-web/pipeline/pr-4922-vueMigration This commit looks good Details

This commit is contained in:
William Buezas 2024-09-06 11:31:07 -03:00
parent c53658e6e0
commit 2bff9304e8
7 changed files with 5 additions and 2 deletions

View File

@ -59,6 +59,7 @@ export default {
adminPhotos: 'Imatges',
adminNews: 'Gestió de noticies',
adminNewsDetails: 'Afegir o editar notícia',
basket: 'Cistella de la compra',
//
orderLoadedIntoBasket: 'Comanda carregada a la cistella!',
loadAnOrder:

View File

@ -72,6 +72,7 @@ export default {
adminPhotos: 'Images',
adminNews: 'News management',
adminNewsDetails: 'Add or edit new',
basket: 'Shopping basket',
//
orderLoadedIntoBasket: 'Order loaded into basket!',
loadAnOrder: 'Please load a pending order to the cart or start a new one',

View File

@ -78,6 +78,7 @@ export default {
adminPhotos: 'Imágenes',
adminNews: 'Gestión de noticias',
adminNewsDetails: 'Añadir o editar noticia',
basket: 'Cesta de la compra',
//
orderLoadedIntoBasket: '¡Pedido cargado en la cesta!',
loadAnOrder:

View File

@ -60,6 +60,7 @@ export default {
adminNews: 'Gestion des nouvelles',
adminNewsDetails: 'Ajouter ou editer nouvelles',
emptyList: 'Vider la liste',
basket: 'Panier',
//
orderLoadedIntoBasket: 'Commande chargée dans le panier!',
loadAnOrder:

View File

@ -61,6 +61,7 @@ export default {
adminNews: 'Gestão de notícias',
adminNewsDetails: 'Ajouter ou editer nouvelles',
emptyList: 'Lista vazia',
basket: 'Cesta da compra',
//
orderLoadedIntoBasket: 'Pedido carregado na cesta!',
loadAnOrder: 'Carregue um pedido pendente no carrinho ou inicie um novo',

View File

@ -67,7 +67,6 @@ const getItems = async () => {
WHERE orderFk = #id`,
{ id: orderId.value }
);
console.log('data', data);
const formattedData = data.map(i => {
const { amount: quantity, ...item } = i;

View File

@ -63,7 +63,6 @@ const fetchInvoices = async () => {
LIMIT 100`,
params
);
console.log(invoices.value);
};
onMounted(async () => {