Skip to content

Commit 8486eef

Browse files
authored
Merge pull request #211 from luisprmat/master
Add Spanish translations
2 parents 5eb18f4 + e23d906 commit 8486eef

File tree

2 files changed

+39
-6
lines changed

2 files changed

+39
-6
lines changed

README.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@ This Laravel package provides an easy to use interface to generate **Invoice PDF
1414

1515
Invoice file can be stored, downloaded, streamed on any of the filesystems you have configured. Supports different templates and locales.
1616

17-
Originally package was developed on PHP 7.3.11 and Laravel 6.2, but should work on lower versions too.
18-
1917
## Features
2018
- Taxes - fixed or rate - for item or for invoice
2119
- Discounts - fixed or by percentage - for item or for invoice
@@ -28,10 +26,6 @@ Originally package was developed on PHP 7.3.11 and Laravel 6.2, but should work
2826
- Translations
2927
- Global settings and overrides on-the-fly
3028

31-
## Change log
32-
33-
Please see the [changelog](CHANGELOG.md) for more information on what has changed recently.
34-
3529
## Installation
3630

3731
Via Composer

lang/es/invoice.php

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
<?php
2+
3+
return [
4+
/*
5+
|--------------------------------------------------------------------------
6+
| Spanish Invoice Language Lines
7+
|--------------------------------------------------------------------------
8+
*/
9+
10+
'invoice' => 'Factura',
11+
'serial' => 'No. Serial',
12+
'date' => 'Fecha de la factura',
13+
'seller' => 'Vendedor',
14+
'buyer' => 'Comprador',
15+
'address' => 'Dirección',
16+
'code' => 'Código',
17+
'vat' => 'Código VAT',
18+
'phone' => 'Teléfono',
19+
'description' => 'Descripción',
20+
'units' => 'Unidades',
21+
'quantity' => 'Cant.',
22+
'price' => 'Precio',
23+
'discount' => 'Descuento',
24+
'tax' => 'Impuesto',
25+
'sub_total' => 'Sub total',
26+
'total_discount' => 'Total descuento',
27+
'taxable_amount' => 'Cantidad base',
28+
'total_taxes' => 'Total impuestos',
29+
'tax_rate' => 'Tasa de impuesto',
30+
'total_amount' => 'Cantidad total',
31+
'pay_until' => 'Favor pagar antes de',
32+
'amount_in_words' => 'Cantidad en palabras',
33+
'amount_in_words_format' => '%s %s y %s %s',
34+
'notes' => 'Notas',
35+
'shipping' => 'Envío',
36+
'paid' => 'Pagado',
37+
'due' => 'Programado',
38+
'page' => 'Página',
39+
];

0 commit comments

Comments
 (0)