Blame view

resources/lang/nl-NL/invoices.php 1.79 KB
b7c7a5f6   Alexey Boroda   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
  <?php
  
  return [
  
      'invoice_number'    => 'Factuurnummer',
      'invoice_date'      => 'Factuur datum',
      'total_price'       => 'Totaalprijs',
      'due_date'          => 'Vervaldatum',
      'order_number'      => 'Bestelnummer',
      'bill_to'           => 'Factuur voor',
  
      'quantity'          => 'Aantal',
      'price'             => 'Prijs',
      'sub_total'         => 'Subtotaal',
      'discount'          => 'Korting',
      'tax_total'         => 'Totaal BTW',
      'total'             => 'Totaal',
  
      'item_name'         => 'Artikelnaam|Artikelnamen',
  
      'show_discount'     => ':discount% Korting',
      'add_discount'      => 'Korting toevoegen',
      'discount_desc'     => 'van subtotaal',
  
      'payment_due'       => 'Te betalen voor',
      'paid'              => 'Betaald',
      'histories'         => 'Geschiedenis',
      'payments'          => 'Betalingen',
      'add_payment'       => 'Een betaling toevoegen',
      'mark_paid'         => 'Als betaald markeren',
      'mark_sent'         => 'Als verstuurd markeren',
      'download_pdf'      => 'PDF downloaden',
      'send_mail'         => 'E-mail versturen',
  
      'status' => [
          'draft'         => 'Concept',
          'sent'          => 'Verzonden',
          'viewed'        => 'Bekeken',
          'approved'      => 'Goedgekeurd',
          'partial'       => 'Gedeeltelijk',
          'paid'          => 'Betaald',
      ],
  
      'messages' => [
          'email_sent'     => 'Factuur is succesvol per e-mail verzonden!',
          'marked_sent'    => 'Factuur is succesvol als verzonden gemarkeerd!',
          'email_required' => 'Er is geen e-mailadres bekend van deze klant!',
      ],
  
      'notification' => [
          'message'       => 'U ontvangt deze e-mail omdat u :amount aanstaande factuur heeft voor klant :customer.',
          'button'        => 'Nu betalen',
      ],
  
  ];