Merge branch '1931-delivery_note_translations' of verdnatura/salix into dev
gitea/salix/dev This commit looks good
Details
gitea/salix/dev This commit looks good
Details
This commit is contained in:
commit
605cfbf850
|
@ -3,6 +3,7 @@ const config = require('../config');
|
|||
const defaultLocale = config.i18n.locale;
|
||||
|
||||
Vue.filter('currency', function(value, currency = 'EUR', locale = defaultLocale) {
|
||||
if (!locale) locale = defaultLocale;
|
||||
return new Intl.NumberFormat(locale, {
|
||||
style: 'currency', currency
|
||||
}).format(parseFloat(value));
|
||||
|
|
|
@ -3,6 +3,7 @@ const config = require('../config');
|
|||
const defaultLocale = config.i18n.locale;
|
||||
|
||||
Vue.filter('percentage', function(value, minFraction = 2, maxFraction = 2, locale = defaultLocale) {
|
||||
if (!locale) locale = defaultLocale;
|
||||
return new Intl.NumberFormat(locale, {
|
||||
style: 'percent',
|
||||
minimumFractionDigits: minFraction,
|
||||
|
|
|
@ -0,0 +1,10 @@
|
|||
subject: Vossa Nota de Entrega
|
||||
title: "Esta é vossa nota de entrega!"
|
||||
dear: Estimado cliente
|
||||
description: Já está disponível sua nota de entrega correspondente a encomenda numero <strong>{0}</strong>. <br/>
|
||||
Para ver-lo faça um clique <a href="https://www.verdnatura.es/#!form=ecomerce/ticket&ticket={0}">neste link</a>.
|
||||
copyLink: 'Como alternativa, podes copiar o siguinte link no teu navegador:'
|
||||
poll: Si o deseja, podes responder nosso questionário de satiscação para ajudar-nos a prestar-vos um melhor serviço. Tua opinião é muito importante para nós!
|
||||
help: Cualquer dúvida que surja, no hesites em consultar-la, <strong>Estamos aqui para
|
||||
atender-te!</strong>
|
||||
conclusion: Obrigado por tua atenção!
|
|
@ -0,0 +1,9 @@
|
|||
subject: Vossa Nota de Entrega
|
||||
title: "Esta é vossa nota de entrega!"
|
||||
dear: Estimado cliente
|
||||
description: Já está disponível sua nota de entrega correspondente a encomenda {0}. <br/>
|
||||
Podes descarregar-la fazendo um clique no arquivo anexado ao e-mail.
|
||||
poll: Si o deseja, podes responder nosso questionário de satiscação para ajudar-nos a prestar-vos um melhor serviço. Tua opinião é muito importante para nós!
|
||||
help: Cualquer dúvida que surja, no hesites em consultar-la, <strong>Estamos aqui para
|
||||
atender-te!</strong>
|
||||
conclusion: Obrigado por tua atenção!
|
|
@ -1,26 +1,26 @@
|
|||
title: Albarán
|
||||
ticketId: Albarán
|
||||
clientId: Cliente
|
||||
deliveryAddress: Dirección de entrega
|
||||
fiscalData: Datos fiscales
|
||||
saleLines: Líneas de pedido
|
||||
date: Fecha
|
||||
title: Bon de livraison
|
||||
ticketId: BL
|
||||
clientId: Client
|
||||
deliveryAddress: Adresse de livraison
|
||||
fiscalData: Coordonnées
|
||||
saleLines: Lignes de la commande
|
||||
date: Date
|
||||
reference: Ref.
|
||||
quantity: Cant.
|
||||
concept: Concepto
|
||||
price: PVP/u
|
||||
discount: Dto.
|
||||
vat: IVA
|
||||
amount: Importe
|
||||
type: Tipo
|
||||
taxBase: Base imp.
|
||||
tax: Tasa
|
||||
fee: Cuota
|
||||
total: Total
|
||||
subtotal: Subtotal
|
||||
taxBreakdown: Desglose impositivo
|
||||
packagings: Cubos y embalajes
|
||||
services: Servicios
|
||||
vatType: Tipo de IVA
|
||||
digitalSignature: Firma digital
|
||||
ticket: Albarán {0}
|
||||
quantity: Quant.
|
||||
concept: Concept
|
||||
price: PRIX/u
|
||||
discount: Remise
|
||||
vat: TVA
|
||||
amount: Montant
|
||||
type: Type
|
||||
taxBase: Base imposable
|
||||
tax: Taxe
|
||||
fee: Quote
|
||||
total: Total
|
||||
subtotal: Total partiel
|
||||
taxBreakdown: Répartition taxes
|
||||
packagings: Bacs et emballages
|
||||
services: Service
|
||||
vatType: Type de TVA
|
||||
digitalSignature: Signature numérique
|
||||
ticket: BL {0}
|
|
@ -0,0 +1,26 @@
|
|||
title: Nota de Entrega
|
||||
ticketId: Nota de Entrega
|
||||
clientId: Cliente
|
||||
deliveryAddress: Morada de Entrega
|
||||
fiscalData: Dados Fiscais
|
||||
saleLines: Linhas da encomenda
|
||||
date: Data
|
||||
reference: Ref.
|
||||
quantity: Qtde.
|
||||
concept: Conceito
|
||||
price: PVP/u
|
||||
discount: Dto.
|
||||
vat: IVA
|
||||
amount: Importe
|
||||
type: Tipo
|
||||
taxBase: Base imp.
|
||||
tax: Taxa
|
||||
fee: Quota
|
||||
total: Total
|
||||
subtotal: Sub-total
|
||||
taxBreakdown: Desglose impositivo
|
||||
packagings: Baldes e Embalagens
|
||||
services: Serviços
|
||||
vatType: Tipo de IVA
|
||||
digitalSignature: Assinatura digital
|
||||
ticket: Nota de Entrega {0}
|
Loading…
Reference in New Issue