Skip to content

Commit 951885e

Browse files
authored
Merge pull request #34 from vinhos-de-luxo/main
Add Português translations
2 parents a5f9be3 + f3b7794 commit 951885e

File tree

2 files changed

+90
-0
lines changed

2 files changed

+90
-0
lines changed

resources/lang/br/invoice.php

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
<?php
2+
3+
declare(strict_types=1);
4+
5+
return [
6+
/*
7+
|--------------------------------------------------------------------------
8+
| Invoice Language Lines
9+
|--------------------------------------------------------------------------
10+
*/
11+
'invoice' => 'Fatura',
12+
'serial_number' => 'Número da fatura',
13+
'due_at' => 'Vencimento em',
14+
'created_at' => 'Criada em',
15+
'paid_at' => 'Paga em',
16+
'description' => 'Descrição',
17+
'total_amount' => 'Total',
18+
'tax' => 'Imposto',
19+
'tax_label' => 'Imposto',
20+
'subtotal_amount' => 'Subtotal',
21+
'amount' => 'Valor',
22+
'unit_price' => 'Preço unitário',
23+
'quantity' => 'Qtd.',
24+
'discount_name' => 'Desconto',
25+
26+
'from' => 'De',
27+
'to' => 'Para',
28+
'shipping_to' => 'Entregar em',
29+
30+
'states' => [
31+
'draft' => 'Rascunho',
32+
'pending' => 'Pendente',
33+
'paid' => 'Paga',
34+
'refunded' => 'Reembolsada',
35+
],
36+
37+
'types' => [
38+
'invoice' => 'Fatura',
39+
'quote' => 'Orçamento',
40+
'credit' => 'Nota de crédito',
41+
'proforma' => 'Fatura Proforma',
42+
],
43+
44+
'page' => 'Página',
45+
];

resources/lang/pt/invoice.php

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
<?php
2+
3+
declare(strict_types=1);
4+
5+
return [
6+
/*
7+
|--------------------------------------------------------------------------
8+
| Invoice Language Lines
9+
|--------------------------------------------------------------------------
10+
*/
11+
'invoice' => 'Fatura',
12+
'serial_number' => 'Número da fatura',
13+
'due_at' => 'Vencimento',
14+
'created_at' => 'Criada em',
15+
'paid_at' => 'Paga em',
16+
'description' => 'Descrição',
17+
'total_amount' => 'Total',
18+
'tax' => 'Imposto',
19+
'tax_label' => 'Imposto',
20+
'subtotal_amount' => 'Subtotal',
21+
'amount' => 'Montante',
22+
'unit_price' => 'Preço unitário',
23+
'quantity' => 'Qtd.',
24+
'discount_name' => 'Desconto',
25+
26+
'from' => 'De',
27+
'to' => 'Para',
28+
'shipping_to' => 'Entregue em',
29+
30+
'states' => [
31+
'draft' => 'Rascunho',
32+
'pending' => 'Pendente',
33+
'paid' => 'Paga',
34+
'refunded' => 'Reembolsada',
35+
],
36+
37+
'types' => [
38+
'invoice' => 'Fatura',
39+
'quote' => 'Orçamento',
40+
'credit' => 'Nota de crédito',
41+
'proforma' => 'Fatura Proforma',
42+
],
43+
44+
'page' => 'Página',
45+
];

0 commit comments

Comments
 (0)